pub trait TupleSplitInto<L, R>: TupleSplitIntoLeft<L, Right = R> + TupleSplitIntoRight<R, Left = L>{
// Required method
fn split_tuple_into(self) -> (L, R);
}Expand description
A trait for splitting a tuple up into two specific parts. L and R must together concatinate to Self.