Struct elrond_wasm_node::ArwenApiImpl[][src]

pub struct ArwenApiImpl {}

The reference to the API implementation based on Arwen hooks. It continas no data, can be embedded at no cost. Cloning it is a no-op.

Trait Implementations

impl CallValueApi<ArwenBigUint> for ArwenApiImpl[src]

impl Clone for ArwenApiImpl[src]

Should be no-op. The API implementation is zero-sized.

impl ContractHookApi<ArwenBigInt, ArwenBigUint> for ArwenApiImpl[src]

type Storage = Self

Abstracts the lower-level storage functionality.

type CallValue = Self

Abstracts the call value handling at the beginning of a function call.

type SendApi = Self

Abstracts the sending of EGLD & ESDT transactions, as well as async calls.

impl CryptoApi for ArwenApiImpl[src]

impl EndpointArgumentApi for ArwenApiImpl[src]

Interface to only be used by code generated by the macros. The smart contract code doesn’t have access to these methods directly.

impl EndpointFinishApi for ArwenApiImpl[src]

Interface to only be used by code generated by the macros. The smart contract code doesn’t have access to these methods directly.

impl ErrorApi for ArwenApiImpl[src]

impl LogApi for ArwenApiImpl[src]

Interface to only be used by code generated by the macros. The smart contract code doesn’t have access to these methods directly.

impl SendApi<ArwenBigUint> for ArwenApiImpl[src]

impl StorageReadApi for ArwenApiImpl[src]

impl StorageWriteApi for ArwenApiImpl[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.