Trait pop_trait::PopFront [] [src]

pub trait PopFront<T>: Pop<T> {
    fn pop_front(&mut self) -> Option<T>;
}

A mutable collection from which items can be removed "at the beginning," retaining ordering.

Required Methods

Removes the value from the front of the collection, if any exist.

Implementors