Trait tuple_utils::PluckTail[][src]

pub trait PluckTail {
    type Head;
    type Tail;
    fn pluck_tail(self) -> (Self::Head, Self::Tail);
}
Expand description

Helper trait to allow Plucking tails of tuples.

This is the inverse of Append

Associated Types

Required methods

Split the tuple into the tail (Tail) and the rest part (Head)

Implementations on Foreign Types

Implementors