pub trait IntoLabelledGeneric {
    type Repr;

    fn into(self) -> Self::Repr;
}

Required Associated Types§

The labelled generic representation type.

Required Methods§

Convert a value to its representation type Repr.

Implementors§