Struct ic_kit::interfaces::management::DefiniteCanisterSettings
source · [−]pub struct DefiniteCanisterSettings {
pub controllers: Vec<Principal>,
pub compute_allocation: Nat,
pub memory_allocation: Nat,
pub freezing_threshold: Nat,
}Fields
controllers: Vec<Principal>compute_allocation: Natmemory_allocation: Natfreezing_threshold: NatTrait Implementations
sourceimpl CandidType for DefiniteCanisterSettings
impl CandidType for DefiniteCanisterSettings
sourceimpl Clone for DefiniteCanisterSettings
impl Clone for DefiniteCanisterSettings
sourcefn clone(&self) -> DefiniteCanisterSettings
fn clone(&self) -> DefiniteCanisterSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DefiniteCanisterSettings
impl Debug for DefiniteCanisterSettings
sourceimpl<'de> Deserialize<'de> for DefiniteCanisterSettings
impl<'de> Deserialize<'de> for DefiniteCanisterSettings
sourcefn 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
sourceimpl PartialEq<DefiniteCanisterSettings> for DefiniteCanisterSettings
impl PartialEq<DefiniteCanisterSettings> for DefiniteCanisterSettings
sourcefn eq(&self, other: &DefiniteCanisterSettings) -> bool
fn eq(&self, other: &DefiniteCanisterSettings) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DefiniteCanisterSettings) -> bool
fn ne(&self, other: &DefiniteCanisterSettings) -> bool
This method tests for !=.
sourceimpl PartialOrd<DefiniteCanisterSettings> for DefiniteCanisterSettings
impl PartialOrd<DefiniteCanisterSettings> for DefiniteCanisterSettings
sourcefn partial_cmp(&self, other: &DefiniteCanisterSettings) -> Option<Ordering>
fn partial_cmp(&self, other: &DefiniteCanisterSettings) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl StructuralPartialEq for DefiniteCanisterSettings
Auto Trait Implementations
impl RefUnwindSafe for DefiniteCanisterSettings
impl Send for DefiniteCanisterSettings
impl Sync for DefiniteCanisterSettings
impl Unpin for DefiniteCanisterSettings
impl UnwindSafe for DefiniteCanisterSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more