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