pub trait IntoNonRecursive {
    type NonRecursive;

    fn into_non_recursive(self) -> Self::NonRecursive;
}
Expand description

Convert this recursive type into a tuple. This is nice as it will require less typing for the same type. A type will be converted to the specified Self::NonRecursive type.

Required Associated Types

The resulting tuple type.

Required Methods

Convert this recursive type to a nice tuple.

Implementors