Trait std::vec::MutableCloneableVector

pub trait MutableCloneableVector<T> {
    fn copy_from(self, &[T]) -> uint;
}

Trait for &[T] where T is Cloneable

Required Methods

fn copy_from(self, &[T]) -> uint

Copies as many elements from src as it can into self (the shorter of self.len() and src.len()). Returns the number of elements copied.

Implementors