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: IntoIterator<Item = T>, T: IntoView> CollectView for I