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