pub trait IntoVec<T> { // Required method fn into_vec(self) -> Vec<T>; }
Convenience for x.into_iter().map(Into::into).collect() using an into_vec() function.
x.into_iter().map(Into::into).collect()
into_vec()