Trait TupleExt

Source
pub trait TupleExt {
    type Head;
    type Tail;

    // Required methods
    fn head(self) -> Self::Head;
    fn tail(self) -> Self::Tail;
}

Required Associated Types§

Required Methods§

Source

fn head(self) -> Self::Head

Source

fn tail(self) -> Self::Tail

Implementations on Foreign Types§

Source§

impl<T, U> TupleExt for (T, U)

Source§

type Head = T

Source§

type Tail = U

Source§

fn head(self) -> Self::Head

Source§

fn tail(self) -> Self::Tail

Source§

impl<T, U, V> TupleExt for (T, U, V)

Source§

type Head = T

Source§

type Tail = V

Source§

fn head(self) -> Self::Head

Source§

fn tail(self) -> Self::Tail

Implementors§