Trait tupletools::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 Twhere T: HeadTail,

§

type Output = <T as HeadTail>::Tail