pub trait TryIntoElementwise<A, B: TryInto<A, Error = E>, E>: IntoIterator {
// Required method
fn try_into_elementwise(self) -> Result<Vec<A>, E>;
}
Required Methods§
Sourcefn try_into_elementwise(self) -> Result<Vec<A>, E>
fn try_into_elementwise(self) -> Result<Vec<A>, E>
Performs try_into on each element of the iterator and collects the results into a Vec.