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.
pub trait ListExt {
// Required method
fn list(self) -> List;
}A trait that adds a list method to any generic type T that implements IntoIterator where
T::Item implements IntoView.