Trait agnes::store::AddData[][src]

pub trait AddData<T, DTypes> where
    T: DataType<DTypes>,
    DTypes: DTypeList,
    DTypes::Storage: TypeSelector<DTypes, T>, 
{ fn add<V: Into<Value<T>>>(
        &mut self,
        ident: FieldIdent,
        value: V
    ) -> Result<()>; }

Trait for adding data (of valid types) to a DataStore.

Required Methods

Add a single value to the specified field.

Implementors