VecAppend

Trait VecAppend 

Source
pub trait VecAppend<E: Copy> {
    // Required method
    fn append(&mut self, arr: &[E]);
}

Required Methods§

Source

fn append(&mut self, arr: &[E])

Implementors§

Source§

impl<T: Copy> VecAppend<T> for Vec<T>