Trait fj_kernel::insert::Insert

source ·
pub trait Insert: Sized + Validate {
    fn insert(
        self,
        objects: &Objects
    ) -> Result<Handle<Self>, <Self as Validate>::Error>; }
Expand description

Convenience trait to insert objects into their respective stores

Required Methods

Insert the object into its respective store

Implementors