pub trait IntoVector<T> {
// Required method
fn into_vector(self) -> Vector<T>;
}Expand description
Trait to convert Vec<T> into Vector<T>.
pub trait IntoVector<T> {
// Required method
fn into_vector(self) -> Vector<T>;
}Trait to convert Vec<T> into Vector<T>.