1pub trait VecUtils<T> {} 2 3impl<T> VecUtils<T> for Vec<T> {} 4 5#[cfg(test)] 6mod test { 7 8 #[test] 9 fn vec_test() {} 10}