[][src]Trait agnes::label::AssocLabels

pub trait AssocLabels {
    type Labels;
}

Generates a LabelCons-list with the labels associated with this cons-list.

Associated Types

type Labels

LabelCons-list of labels associated with the Self cons-list.

Loading content...

Implementors

impl AssocLabels for Nil[src]

type Labels = Nil

impl<Label, Value, Tail> AssocLabels for LVCons<Label, Value, Tail> where
    Tail: AssocLabels
[src]

type Labels = LabelCons<Label, Tail::Labels>

Loading content...