Trait push_trait::PushRefBack [] [src]

pub trait PushRefBack<T: ?Sized>: PushRef<T> {
    fn push_ref_back(&mut self, val: &T) -> Option<Self::PushedOut>;
}

Alternative to PushBack<&T>.

Required Methods

Adds the value to the back of the collection.

Implementors