Trait leptos::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,