pub struct UpdateSettings;Expand description
Update the settings of a canister.
Trait Implementations§
Source§impl Method for UpdateSettings
impl Method for UpdateSettings
const NAME: &'static str = "update_settings"
type Arguments = (UpdateSettingsArgument,)
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 UpdateSettings
impl RefUnwindSafe for UpdateSettings
impl Send for UpdateSettings
impl Sync for UpdateSettings
impl Unpin for UpdateSettings
impl UnsafeUnpin for UpdateSettings
impl UnwindSafe for UpdateSettings
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