pub trait Insert: Sized {
    // Required method
    fn insert(self, services: &mut Services) -> 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.

Required Methods§

source

fn insert(self, services: &mut Services) -> Handle<Self>

Insert the object into its respective store

Implementors§