[−][src]Trait sp_runtime_interface::pass_by::PassByInner
Trait that needs to be implemented by a type that should be passed between wasm and the host,
by using the inner type. See Inner for more information.
Associated Types
Loading content...Required methods
pub fn into_inner(self) -> Self::Inner[src]
Consumes self and returns the inner type.
pub fn inner(&self) -> &Self::Inner[src]
Returns the reference to the inner type.
pub fn from_inner(inner: Self::Inner) -> Self[src]
Construct Self from the given inner.