PopFront

Trait PopFront 

Source
pub trait PopFront {
    type Output;

    // Required method
    fn pop_front(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn pop_front(self) -> Self::Output

Implementors§

Source§

impl<T> PopFront for T
where T: HeadTail,