Trait frunk_core::labelled::IntoLabelledGeneric[][src]

pub trait IntoLabelledGeneric {
    type Repr;
    fn into(self) -> Self::Repr;
}

Associated Types

type Repr[src]

The labelled generic representation type.

Loading content...

Required methods

fn into(self) -> Self::Repr[src]

Convert a value to its representation type Repr.

Loading content...

Implementors

impl<A> IntoLabelledGeneric for A where
    A: LabelledGeneric
[src]

type Repr = <A as LabelledGeneric>::Repr

Loading content...