pub struct CanisterCall {
pub canister_id: String,
pub method: String,
pub arg: String,
}Fields§
§canister_id: String§method: String§arg: StringTrait Implementations§
Source§impl CandidType for CanisterCall
impl CandidType for CanisterCall
Source§impl Clone for CanisterCall
impl Clone for CanisterCall
Source§fn clone(&self) -> CanisterCall
fn clone(&self) -> CanisterCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CanisterCall
impl Debug for CanisterCall
Source§impl<'de> Deserialize<'de> for CanisterCall
impl<'de> Deserialize<'de> for CanisterCall
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
Auto Trait Implementations§
impl Freeze for CanisterCall
impl RefUnwindSafe for CanisterCall
impl Send for CanisterCall
impl Sync for CanisterCall
impl Unpin for CanisterCall
impl UnsafeUnpin for CanisterCall
impl UnwindSafe for CanisterCall
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