pub struct ControllersChangeRecord {
pub controllers: Vec<Principal>,
}Expand description
§Controllers Change Record
Details about updating canister controllers.
Fields§
§controllers: Vec<Principal>The complete new set of canister controllers.
Trait Implementations§
Source§impl CandidType for ControllersChangeRecord
impl CandidType for ControllersChangeRecord
Source§impl Clone for ControllersChangeRecord
impl Clone for ControllersChangeRecord
Source§fn clone(&self) -> ControllersChangeRecord
fn clone(&self) -> ControllersChangeRecord
Returns a duplicate 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 moreSource§impl Debug for ControllersChangeRecord
impl Debug for ControllersChangeRecord
Source§impl<'de> Deserialize<'de> for ControllersChangeRecord
impl<'de> Deserialize<'de> for ControllersChangeRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ControllersChangeRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ControllersChangeRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ControllersChangeRecord
impl Hash for ControllersChangeRecord
Source§impl Ord for ControllersChangeRecord
impl Ord for ControllersChangeRecord
Source§fn cmp(&self, other: &ControllersChangeRecord) -> Ordering
fn cmp(&self, other: &ControllersChangeRecord) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ControllersChangeRecord
impl PartialEq for ControllersChangeRecord
Source§impl PartialOrd for ControllersChangeRecord
impl PartialOrd for ControllersChangeRecord
Source§impl Serialize for ControllersChangeRecord
impl Serialize for ControllersChangeRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for ControllersChangeRecord
impl StructuralPartialEq for ControllersChangeRecord
Auto Trait Implementations§
impl Freeze for ControllersChangeRecord
impl RefUnwindSafe for ControllersChangeRecord
impl Send for ControllersChangeRecord
impl Sync for ControllersChangeRecord
impl Unpin for ControllersChangeRecord
impl UnwindSafe for ControllersChangeRecord
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