Struct coreledger_backend::events::AdministratorChanged  
pub struct AdministratorChanged {
    pub affected_address: Principal,
    pub is_admin_status: bool,
}Expand description
Occurs when address is added or removed from admins list.
Fields§
§affected_address: PrincipalAddress being added or removed.
is_admin_status: boolIndicates whether the address was added or removed from admins list.
Trait Implementations§
§impl CandidType for AdministratorChanged
 
impl CandidType for AdministratorChanged
§impl Clone for AdministratorChanged
 
impl Clone for AdministratorChanged
§fn clone(&self) -> AdministratorChanged
 
fn clone(&self) -> AdministratorChanged
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read more§impl<'de> Deserialize<'de> for AdministratorChanged
 
impl<'de> Deserialize<'de> for AdministratorChanged
§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
§impl Serialize for AdministratorChanged
 
impl Serialize for AdministratorChanged
Auto Trait Implementations§
impl Freeze for AdministratorChanged
impl RefUnwindSafe for AdministratorChanged
impl Send for AdministratorChanged
impl Sync for AdministratorChanged
impl Unpin for AdministratorChanged
impl UnwindSafe for AdministratorChanged
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