[][src]Struct holochain_wasm_utils::api_serialization::ZomeFnCallArgs

pub struct ZomeFnCallArgs {
    pub instance_handle: String,
    pub zome_name: String,
    pub cap_token: Address,
    pub fn_name: String,
    pub fn_args: String,
}

Struct for input data received when Zome API function call() is invoked

Fields

instance_handle: Stringzome_name: Stringcap_token: Addressfn_name: Stringfn_args: String

Trait Implementations

impl<'a> From<&'a ZomeFnCallArgs> for JsonString[src]

impl From<ZomeFnCallArgs> for JsonString[src]

impl Clone for ZomeFnCallArgs[src]

impl Default for ZomeFnCallArgs[src]

impl Eq for ZomeFnCallArgs[src]

impl PartialEq<ZomeFnCallArgs> for ZomeFnCallArgs[src]

impl Debug for ZomeFnCallArgs[src]

impl<'a> TryFrom<&'a JsonString> for ZomeFnCallArgs[src]

type Error = JsonError

The type returned in the event of a conversion error.

impl TryFrom<JsonString> for ZomeFnCallArgs[src]

type Error = JsonError

The type returned in the event of a conversion error.

impl Hash for ZomeFnCallArgs[src]

impl<'de> Deserialize<'de> for ZomeFnCallArgs[src]

impl Serialize for ZomeFnCallArgs[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Clone for T where
    T: Clone
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,