pub trait Split {
type Left;
type Right;
// Required method
fn split(self) -> (Self::Left, Self::Right);
}
Expand description
Tries to split a tuple into two tuples if the tuple is odd sized the Right side will contain the extra element