pub trait PopFront {
type Remain;
type Front;
// Required method
fn pop_front(self) -> (Self::Front, Self::Remain);
}Expand description
Removes the first field of the tuple.
pub trait PopFront {
type Remain;
type Front;
// Required method
fn pop_front(self) -> (Self::Front, Self::Remain);
}Removes the first field of the tuple.