Struct ic_cdk::api::management_canister::main::CanisterSettings
source · pub struct CanisterSettings {
pub controllers: Option<Vec<Principal>>,
pub compute_allocation: Option<Nat>,
pub memory_allocation: Option<Nat>,
pub freezing_threshold: Option<Nat>,
pub reserved_cycles_limit: Option<Nat>,
}
Expand description
Canister settings.
See settings
.
Fields§
§controllers: Option<Vec<Principal>>
A list of principals. Must be between 0 and 10 in size.
compute_allocation: Option<Nat>
Must be a number between 0 and 100, inclusively.
memory_allocation: Option<Nat>
Must be a number between 0 and 2^48^ (i.e 256TB), inclusively.
freezing_threshold: Option<Nat>
Must be a number between 0 and 2^64^-1, inclusively, and indicates a length of time in seconds.
reserved_cycles_limit: Option<Nat>
Must be a number between 0 and 2^128^-1, inclusively, and indicates the
upper limit on cycles in the reserved_cycles
balance of the canister.
Trait Implementations§
source§impl CandidType for CanisterSettings
impl CandidType for CanisterSettings
source§impl Clone for CanisterSettings
impl Clone for CanisterSettings
source§fn clone(&self) -> CanisterSettings
fn clone(&self) -> CanisterSettings
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 moresource§impl Debug for CanisterSettings
impl Debug for CanisterSettings
source§impl Default for CanisterSettings
impl Default for CanisterSettings
source§fn default() -> CanisterSettings
fn default() -> CanisterSettings
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CanisterSettings
impl<'de> Deserialize<'de> for CanisterSettings
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 Hash for CanisterSettings
impl Hash for CanisterSettings
source§impl Ord for CanisterSettings
impl Ord for CanisterSettings
source§fn cmp(&self, other: &CanisterSettings) -> Ordering
fn cmp(&self, other: &CanisterSettings) -> 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 CanisterSettings
impl PartialEq for CanisterSettings
source§impl PartialOrd for CanisterSettings
impl PartialOrd for CanisterSettings
source§impl Serialize for CanisterSettings
impl Serialize for CanisterSettings
impl Eq for CanisterSettings
impl StructuralPartialEq for CanisterSettings
Auto Trait Implementations§
impl Freeze for CanisterSettings
impl RefUnwindSafe for CanisterSettings
impl Send for CanisterSettings
impl Sync for CanisterSettings
impl Unpin for CanisterSettings
impl UnwindSafe for CanisterSettings
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)