AssocLabels

Trait AssocLabels 

Source
pub trait AssocLabels {
    type Labels;
}
Expand description

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

Required Associated Types§

Source

type Labels

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

Implementors§

Source§

impl AssocLabels for Nil

Source§

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

Source§

type Labels = Cons<Labeled<Label, ()>, <Tail as AssocLabels>::Labels>