pub struct FleetSubnetCanisterPoolConfig {
pub minimum_size: u32,
pub maximum_size: u32,
pub canister_cycles: Cycles,
}Expand description
FleetSubnetCanisterPoolConfig
Immutable prepaid empty-Canister inventory policy for one Fleet Subnet Root.
Fields§
§minimum_size: u32Ready empty Canisters the root continuously attempts to retain.
maximum_size: u32Ceiling for configured imports and proactive refill inventory.
Recycled assets remain tracked even when their return temporarily exceeds this target.
canister_cycles: CyclesCycles placed on each Canister created by the root for this pool.
Trait Implementations§
Source§impl Clone for FleetSubnetCanisterPoolConfig
impl Clone for FleetSubnetCanisterPoolConfig
Source§fn clone(&self) -> FleetSubnetCanisterPoolConfig
fn clone(&self) -> FleetSubnetCanisterPoolConfig
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<'de> Deserialize<'de> for FleetSubnetCanisterPoolConfig
impl<'de> Deserialize<'de> for FleetSubnetCanisterPoolConfig
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
impl Eq for FleetSubnetCanisterPoolConfig
impl StructuralPartialEq for FleetSubnetCanisterPoolConfig
Auto Trait Implementations§
impl Freeze for FleetSubnetCanisterPoolConfig
impl RefUnwindSafe for FleetSubnetCanisterPoolConfig
impl Send for FleetSubnetCanisterPoolConfig
impl Sync for FleetSubnetCanisterPoolConfig
impl Unpin for FleetSubnetCanisterPoolConfig
impl UnsafeUnpin for FleetSubnetCanisterPoolConfig
impl UnwindSafe for FleetSubnetCanisterPoolConfig
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