CollectView

Trait CollectView 

Source
pub trait CollectView {
    // Required method
    fn collect_view(self) -> View;
}
Expand description

Collects an iterator or collection into a View.

Required Methods§

Source

fn collect_view(self) -> View

Collects an iterator or collection into a View.

Implementors§

Source§

impl<I, T> CollectView for I
where I: IntoIterator<Item = T>, T: IntoView,