Trait fj_kernel::operations::Insert
source · pub trait Insert: Sized {
// Required method
fn insert(self, objects: &mut Service<Objects>) -> Handle<Self>;
}Expand description
Insert an object into its respective store
This is the only primitive operation that is directly understood by
Service<Objects>. All other operations are built on top of it.