[][src]Type Definition agnes::frame::StoreFieldCons

type StoreFieldCons<L, T> = LCons<L, T>;

Type alias for label-only cons-list

Trait Implementations

impl<FramedStore, Label, Tail> RotateFields<FramedStore> for StoreFieldCons<Label, Tail> where
    FramedStore: SelectFieldByLabel<Label>,
    Tail: RotateFieldsTerm<FramedStore, <FramedStore as SelectFieldByLabel<Label>>::DType, <FramedStore as SelectFieldByLabel<Label>>::Output>, 
[src]

type DType = <FramedStore as SelectFieldByLabel<Label>>::DType

Underlying data type of the source fields

type Output = <FramedStore as SelectFieldByLabel<Label>>::Output

Type of the individual DataIndex-implementing objects returned.

impl<FramedStore, DType, Output, Label, Tail> RotateFieldsTerm<FramedStore, DType, Output> for StoreFieldCons<Label, Tail> where
    StoreFieldCons<Label, Tail>: RotateFields<FramedStore, DType = DType, Output = Output>,
    Output: DataIndex<DType = DType>, 
[src]