logo
pub trait VectorLike<E> {
    fn push(&mut self, e: E);
}
Expand description

Trait VectorLike adopter for Vector-like containers.

Required Methods

Appends an element to the back of a container.

Implementors