ListExt

Trait ListExt 

Source
pub trait ListExt {
    // Required method
    fn list(self) -> List;
}
Expand description

A trait that adds a list method to any generic type T that implements IntoIterator where T::Item implements IntoView.

Required Methods§

Source

fn list(self) -> List

Implementors§

Source§

impl<V: IntoView + 'static, T: IntoIterator<Item = V> + 'static> ListExt for T