pub trait IntoTuple<Tuple> {
fn into_tuple(self) -> Tuple;
}
Expand description
Convert this recursive type into a tuple.
This is nice as it will require less typing for the same type.
A type might or might not be convertible to the specified Tuple
type.
Required Methods
fn into_tuple(self) -> Tuple
fn into_tuple(self) -> Tuple
Convert this recursive type to a nice tuple.