pub struct CanisterPoolEntryView {
pub created_at: u64,
pub cycles: Cycles,
pub status: CanisterPoolStatusView,
pub role: Option<CanisterRole>,
pub parent: Option<Principal>,
pub module_hash: Option<Vec<u8>>,
}Expand description
CanisterPoolEntryView
Fields§
§created_at: u64§cycles: Cycles§status: CanisterPoolStatusView§role: Option<CanisterRole>§parent: Option<Principal>§module_hash: Option<Vec<u8>>Trait Implementations§
Source§impl CandidType for CanisterPoolEntryView
impl CandidType for CanisterPoolEntryView
Source§impl Clone for CanisterPoolEntryView
impl Clone for CanisterPoolEntryView
Source§fn clone(&self) -> CanisterPoolEntryView
fn clone(&self) -> CanisterPoolEntryView
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 CanisterPoolEntryView
impl Debug for CanisterPoolEntryView
Source§impl<'de> Deserialize<'de> for CanisterPoolEntryView
impl<'de> Deserialize<'de> for CanisterPoolEntryView
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
Auto Trait Implementations§
impl Freeze for CanisterPoolEntryView
impl RefUnwindSafe for CanisterPoolEntryView
impl Send for CanisterPoolEntryView
impl Sync for CanisterPoolEntryView
impl Unpin for CanisterPoolEntryView
impl UnwindSafe for CanisterPoolEntryView
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