pub enum EntityProfileEvent {
EntityCreated {
subject_id: SubjectId,
org_type: OrgType,
controller_model: ControllerModel,
},
EntityUpdated {
subject_id: SubjectId,
},
ControllerChanged {
subject_id: SubjectId,
old_controllers: Vec<Address>,
new_controllers: Vec<Address>,
},
EntityStatusChanged {
subject_id: SubjectId,
old_status: EntityStatus,
new_status: EntityStatus,
},
}Expand description
Entity profile events
Variants§
Trait Implementations§
Source§impl Clone for EntityProfileEvent
impl Clone for EntityProfileEvent
Source§fn clone(&self) -> EntityProfileEvent
fn clone(&self) -> EntityProfileEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EntityProfileEvent
impl Debug for EntityProfileEvent
Source§impl<'de> Deserialize<'de> for EntityProfileEvent
impl<'de> Deserialize<'de> for EntityProfileEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EntityProfileEvent
impl PartialEq for EntityProfileEvent
Source§fn eq(&self, other: &EntityProfileEvent) -> bool
fn eq(&self, other: &EntityProfileEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EntityProfileEvent
impl Serialize for EntityProfileEvent
impl Eq for EntityProfileEvent
impl StructuralPartialEq for EntityProfileEvent
Auto Trait Implementations§
impl Freeze for EntityProfileEvent
impl RefUnwindSafe for EntityProfileEvent
impl Send for EntityProfileEvent
impl Sync for EntityProfileEvent
impl Unpin for EntityProfileEvent
impl UnsafeUnpin for EntityProfileEvent
impl UnwindSafe for EntityProfileEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more