Trait eclectic::seq::PushBack [] [src]

pub trait PushBack: Insert {
    fn push_back(&mut self, item: Self::Item);
}

A sequence that supports insertion.

Required Methods

fn push_back(&mut self, item: Self::Item)

Pushes the given item onto the back of the sequence.

Implementors