pub trait MemoryOrganization: AuthOrganization {
// Required methods
fn from_create(
id: String,
create: &CreateOrganization,
now: DateTime<Utc>,
) -> Self;
fn apply_update(&mut self, update: &UpdateOrganization);
}Expand description
Construction and mutation for organization entities stored in memory.
Required Methods§
fn from_create( id: String, create: &CreateOrganization, now: DateTime<Utc>, ) -> Self
fn apply_update(&mut self, update: &UpdateOrganization)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.