pub trait IntoLabelledGeneric {
    type Repr;

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

Required Associated Types§

source

type Repr

The labelled generic representation type.

Required Methods§

source

fn into(self) -> Self::Repr

Convert a value to its representation type Repr.

Implementors§