pub enum CanisterPoolCreationProgress {
Intent {
uncertain_result: bool,
},
Created {
block_index: u64,
canister_id: Principal,
},
Blocked {
failure: CanisterPoolCreationFailure,
},
}Expand description
Durable controller-visible progress of one autonomous refill.
Variants§
Trait Implementations§
Source§impl Clone for CanisterPoolCreationProgress
impl Clone for CanisterPoolCreationProgress
Source§fn clone(&self) -> CanisterPoolCreationProgress
fn clone(&self) -> CanisterPoolCreationProgress
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 moreimpl Copy for CanisterPoolCreationProgress
Source§impl Debug for CanisterPoolCreationProgress
impl Debug for CanisterPoolCreationProgress
Source§impl<'de> Deserialize<'de> for CanisterPoolCreationProgress
impl<'de> Deserialize<'de> for CanisterPoolCreationProgress
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 CanisterPoolCreationProgress
impl StructuralPartialEq for CanisterPoolCreationProgress
Auto Trait Implementations§
impl Freeze for CanisterPoolCreationProgress
impl RefUnwindSafe for CanisterPoolCreationProgress
impl Send for CanisterPoolCreationProgress
impl Sync for CanisterPoolCreationProgress
impl Unpin for CanisterPoolCreationProgress
impl UnsafeUnpin for CanisterPoolCreationProgress
impl UnwindSafe for CanisterPoolCreationProgress
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