[][src]Trait agnes::store::AssocStorage

pub trait AssocStorage {
    type Storage: Debug;
}

Provide an associated StorageCons cons-list with Self.

Associated Types

type Storage: Debug

Associated StorageCons cons-list.

Loading content...

Implementors

impl AssocStorage for Nil[src]

type Storage = Nil

impl<Label, DType, Tail> AssocStorage for FieldCons<Label, DType, Tail> where
    Tail: AssocStorage,
    Label: Debug,
    DType: Debug
[src]

type Storage = StorageCons<Label, DType, Tail::Storage>

Loading content...