[][src]Trait agnes::store::IntoStore

pub trait IntoStore<Label> {
    type Output;
    fn into_store(self) -> Self::Output;
}

Trait for converting field data into a DataStore object with label Label.

Associated Types

type Output

The reulting DataStore object.

Loading content...

Required methods

fn into_store(self) -> Self::Output

Wraps this field data in a DataStore and returns it.

Loading content...

Implementors

impl<Label, T> IntoStore<Label> for FieldData<T> where
    Label: Debug,
    T: Default + Debug
[src]

type Output = SingleFieldStore<Label, T>

Loading content...