pub trait PushMany<T> {
    fn push_many(&mut self, value: T, n: usize);
}

Required Methods

Implementors