pub trait VecLike: Deref<Target = [Self::Element]> + DerefMut {
    type Element;

    fn is_empty(&self) -> bool;
    fn len(&self) -> usize;
    fn pop(&mut self) -> Option<Self::Element>;
    fn push(&mut self, x: Self::Element);
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors