Struct ic_kit::interfaces::management::CanisterStatus
source · [−]pub struct CanisterStatus;Expand description
Query the status of a canister.
Trait Implementations
sourceimpl Method for CanisterStatus
impl Method for CanisterStatus
const NAME: &'static str = "canister_status"
type Arguments = (WithCanisterId,)
type Response = (CanisterStatusResponse,)
fn perform(id: Principal, args: Self::Arguments) -> CallResponse<Self::Response>
fn perform_with_payment(
id: Principal,
args: Self::Arguments,
cycles: u64
) -> CallResponse<Self::Response>
Auto Trait Implementations
impl RefUnwindSafe for CanisterStatus
impl Send for CanisterStatus
impl Sync for CanisterStatus
impl Unpin for CanisterStatus
impl UnwindSafe for CanisterStatus
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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