pub trait IntoTuple: HasTupleRepr + Into<TupleRepr<Self>> {
// Provided method
fn into_tuple(self) -> TupleRepr<Self> { ... }
}Expand description
Conversion of the given type to its tuple representation.
Provided Methods§
fn into_tuple(self) -> TupleRepr<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".