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

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

The strategy that should be used to pass the type.

Implementations on Foreign Types

Implementors