[][src]Trait agnes::view::FrameIndexList

pub trait FrameIndexList {
    type LabelList;
}

A trait for deriving the LabelCons of field indices of a type.

Associated Types

type LabelList

The associated LabelCons for this type.

Loading content...

Implementors

impl FrameIndexList for Nil[src]

type LabelList = Nil

impl<Label, FrameIndex, FrameLabel, Tail> FrameIndexList for FrameLookupCons<Label, FrameIndex, FrameLabel, Tail> where
    Tail: FrameIndexList
[src]

type LabelList = LCons<FrameIndex, <Tail as FrameIndexList>::LabelList>

Loading content...