Trait IntoFlattened

Source
pub trait IntoFlattened<T> {
    // Required method
    fn into_flattened(self) -> Vec<T>;
}
Expand description

Create a new vector that contains owned versions of the elements of all vectors/slices. Comes in two variants, into* consuming the input, and one using ToOwned instead.

Required Methods§

Source

fn into_flattened(self) -> Vec<T>

Implementations on Foreign Types§

Source§

impl<T> IntoFlattened<T> for Vec<Vec<T>>

Implementors§