[][src]Trait sp_runtime_interface::pass_by::PassBy

pub trait PassBy: Sized {
    type PassBy: PassByImpl<Self>;
}

Something that should be passed between wasm and the host using the given strategy.

See Codec, Inner or Enum for more information about the provided strategies.

Associated Types

type PassBy: PassByImpl<Self>[src]

The strategy that should be used to pass the type.

Loading content...

Implementations on Foreign Types

impl<T: Codec, E: Codec> PassBy for Result<T, E>[src]

type PassBy = Codec<Self>

impl<T: Codec> PassBy for Option<T>[src]

type PassBy = Codec<Self>

impl PassBy for (u32, u32, u32, u32)[src]

type PassBy = Codec<Self>

impl PassBy for H160[src]

type PassBy = Inner<Self, [u8; 20]>

impl PassBy for H256[src]

type PassBy = Inner<Self, [u8; 32]>

impl PassBy for H512[src]

type PassBy = Inner<Self, [u8; 64]>

impl PassBy for ValueType[src]

impl PassBy for Value[src]

impl PassBy for TrackedStorageKey[src]

type PassBy = Codec<Self>

Loading content...

Implementors

Loading content...