pub trait IntoTuple<Tup> {
// Required method
fn into_tuple(self) -> Tup;
}Expand description
Converts a tuple to a new one. This is the counterpart of FromTuple.
pub trait IntoTuple<Tup> {
// Required method
fn into_tuple(self) -> Tup;
}Converts a tuple to a new one. This is the counterpart of FromTuple.