pub struct UninstallCodeArgs {
pub canister_id: CanisterId,
}Expand description
Argument type of uninstall_code.
§Note
This type is a reduced version of ic_management_canister_types::UninstallCodeArgs.
The sender_canister_version field is removed as it is set automatically in uninstall_code.
Fields§
§canister_id: CanisterIdCanister ID.
Trait Implementations§
Source§impl CandidType for UninstallCodeArgs
impl CandidType for UninstallCodeArgs
Source§impl Clone for UninstallCodeArgs
impl Clone for UninstallCodeArgs
Source§fn clone(&self) -> UninstallCodeArgs
fn clone(&self) -> UninstallCodeArgs
Returns a copy 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 UninstallCodeArgs
impl Debug for UninstallCodeArgs
Source§impl<'de> Deserialize<'de> for UninstallCodeArgs
impl<'de> Deserialize<'de> for UninstallCodeArgs
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
Source§impl Hash for UninstallCodeArgs
impl Hash for UninstallCodeArgs
Source§impl Ord for UninstallCodeArgs
impl Ord for UninstallCodeArgs
Source§fn cmp(&self, other: &UninstallCodeArgs) -> Ordering
fn cmp(&self, other: &UninstallCodeArgs) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for UninstallCodeArgs
impl PartialEq for UninstallCodeArgs
Source§impl PartialOrd for UninstallCodeArgs
impl PartialOrd for UninstallCodeArgs
Source§impl Serialize for UninstallCodeArgs
impl Serialize for UninstallCodeArgs
impl Eq for UninstallCodeArgs
impl StructuralPartialEq for UninstallCodeArgs
Auto Trait Implementations§
impl Freeze for UninstallCodeArgs
impl RefUnwindSafe for UninstallCodeArgs
impl Send for UninstallCodeArgs
impl Sync for UninstallCodeArgs
impl Unpin for UninstallCodeArgs
impl UnwindSafe for UninstallCodeArgs
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