pub trait Vectorable<K>where K: Copy + PartialEq + PartialOrd,{ // Required method fn into(&self) -> Vec<K>; }