[][src]Trait indexing::container_traits::Pushable

pub unsafe trait Pushable: Trustworthy {
    fn push(&mut self, item: Self::Item) -> usize;
unsafe fn insert_unchecked(&mut self, index: usize, item: Self::Item); }

Required methods

fn push(&mut self, item: Self::Item) -> usize

unsafe fn insert_unchecked(&mut self, index: usize, item: Self::Item)

Loading content...

Implementations on Foreign Types

impl<T> Pushable for Vec<T>[src]

impl<'a, C: ?Sized> Pushable for &'a mut C where
    C: Pushable
[src]

Loading content...

Implementors

Loading content...