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.