pub enum PoolAdminResponse {
Created {
pid: Principal,
},
Recycled,
Imported,
QueuedImported {
added: u64,
requeued: u64,
skipped: u64,
total: u64,
summary: PoolImportSummary,
},
FailedRequeued {
requeued: u64,
skipped: u64,
total: u64,
},
}Expand description
PoolAdminResponse
Variants§
Trait Implementations§
Source§impl CandidType for PoolAdminResponse
impl CandidType for PoolAdminResponse
Source§impl Clone for PoolAdminResponse
impl Clone for PoolAdminResponse
Source§fn clone(&self) -> PoolAdminResponse
fn clone(&self) -> PoolAdminResponse
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 PoolAdminResponse
impl Debug for PoolAdminResponse
Source§impl<'de> Deserialize<'de> for PoolAdminResponse
impl<'de> Deserialize<'de> for PoolAdminResponse
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 PartialEq for PoolAdminResponse
impl PartialEq for PoolAdminResponse
impl Eq for PoolAdminResponse
impl StructuralPartialEq for PoolAdminResponse
Auto Trait Implementations§
impl Freeze for PoolAdminResponse
impl RefUnwindSafe for PoolAdminResponse
impl Send for PoolAdminResponse
impl Sync for PoolAdminResponse
impl Unpin for PoolAdminResponse
impl UnwindSafe for PoolAdminResponse
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