Trait sp_runtime_interface::pass_by::PassByInner [−][src]
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
fn into_inner(self) -> Self::Inner
[src]
Consumes self
and returns the inner type.
fn inner(&self) -> &Self::Inner
[src]
Returns the reference to the inner type.
fn from_inner(inner: Self::Inner) -> Self
[src]
Construct Self
from the given inner
.