pub trait IntoTuple<Tuple> {
    // Required method
    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§
sourcefn into_tuple(self) -> Tuple
 
fn into_tuple(self) -> Tuple
Convert this recursive type to a nice tuple.