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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".