pub trait IntoElementwise<A, B: Into<A>>: IntoIterator {
// Required method
fn into_elementwise(self) -> Vec<A>;
}Required Methods§
Sourcefn into_elementwise(self) -> Vec<A>
fn into_elementwise(self) -> Vec<A>
Performs into on each element of the iterator and collects the results into a Vec.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".