pub trait IntoRecursive {
    type Recursive;

    fn into_recursive(self) -> Self::Recursive;
}
Expand description

Create a recursive type from this tuple.

Required Associated Types

The recursive type resulting from this tuple.

Required Methods

Create a recursive type from this tuple.

Implementations on Foreign Types

Implementors