pub trait PopBack {
type Remain;
type Back;
// Required method
fn pop_back(self) -> (Self::Back, Self::Remain);
}Expand description
Removes the last field of the tuple.
pub trait PopBack {
type Remain;
type Back;
// Required method
fn pop_back(self) -> (Self::Back, Self::Remain);
}Removes the last field of the tuple.