1
 2
 3
 4
 5
 6
 7
 8
 9
10
pub trait VecUtils<T> {}

impl<T> VecUtils<T> for Vec<T> {}

#[cfg(test)]
mod test {

    #[test]
    fn vec_test() {}
}