pub trait TupleViews {
// Required method
fn into_views(self) -> Vec<AnyView>;
}Expand description
A trait for converting collections and tuples of views into a vector of AnyViews.
This trait provides a uniform way to handle multiple views, allowing them to be converted into a homogeneous collection that can be processed consistently.
Required Methods§
Sourcefn into_views(self) -> Vec<AnyView>
fn into_views(self) -> Vec<AnyView>
Converts the implementing type into a vector of AnyView objects.
§Returns
A Vec<AnyView> containing each view from the original collection.