Struct ic_utils::interfaces::management_canister::StatusCallResult
source · [−]pub struct StatusCallResult {
pub status: CanisterStatus,
pub settings: DefiniteCanisterSettings,
pub module_hash: Option<Vec<u8>>,
pub memory_size: Nat,
pub cycles: Nat,
}Expand description
The complete canister status information of a canister. This includes the CanisterStatus, a hash of the module installed on the canister (None if nothing installed), the contoller of the canister, the canisters memory size, and its balance in cycles.
Fields
status: CanisterStatusThe status of the canister.
settings: DefiniteCanisterSettingsThe canister’s settings.
module_hash: Option<Vec<u8>>The SHA-256 hash of the canister’s installed code, if any.
memory_size: NatThe total size, in bytes, of the memory the canister is using.
cycles: NatThe canister’s cycle balance.
Trait Implementations
sourceimpl CandidType for StatusCallResult
impl CandidType for StatusCallResult
sourceimpl Clone for StatusCallResult
impl Clone for StatusCallResult
sourcefn clone(&self) -> StatusCallResult
fn clone(&self) -> StatusCallResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for StatusCallResult
impl Debug for StatusCallResult
sourceimpl<'de> Deserialize<'de> for StatusCallResult
impl<'de> Deserialize<'de> for StatusCallResult
sourcefn 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 RefUnwindSafe for StatusCallResult
impl Send for StatusCallResult
impl Sync for StatusCallResult
impl Unpin for StatusCallResult
impl UnwindSafe for StatusCallResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more