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
pub trait Insert: Sized + Validate {
fn insert(
self,
objects: &Objects
) -> Result<Handle<Self>, <Self as Validate>::Error>;
}Convenience trait to insert objects into their respective stores