pub struct StartCanister;Expand description
Start the canister.
Trait Implementations§
Source§impl Method for StartCanister
impl Method for StartCanister
const NAME: &'static str = "start_canister"
type Arguments = (WithCanisterId,)
type Response = ()
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 Freeze for StartCanister
impl RefUnwindSafe for StartCanister
impl Send for StartCanister
impl Sync for StartCanister
impl Unpin for StartCanister
impl UnsafeUnpin for StartCanister
impl UnwindSafe for StartCanister
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