Trait std::vec::OwnedCopyableVector

pub trait OwnedCopyableVector<T: Clone> {
    fn push_all(&mut self, rhs: &[T]);
    fn grow(&mut self, n: uint, initval: &T);
    fn grow_set(&mut self, index: uint, initval: &T, val: T);
}

Required Methods

fn push_all(&mut self, rhs: &[T])

fn grow(&mut self, n: uint, initval: &T)

fn grow_set(&mut self, index: uint, initval: &T, val: T)

Implementors