Enum sp_wasm_interface::ReturnValue
source · [−]pub enum ReturnValue {
Unit,
Value(Value),
}
Expand description
Typed value that can be returned from a function.
Basically a TypedValue
plus Unit
, for functions which return nothing.
Variants
Unit
For returning nothing.
Value(Value)
For returning some concrete value.
Implementations
Maximum number of bytes ReturnValue
might occupy when serialized with SCALE
.
Breakdown: 1 byte for encoding unit/value variant 1 byte for encoding value type 8 bytes for encoding the biggest value types available in wasm: f64, i64.
Trait Implementations
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ReturnValue
impl Send for ReturnValue
impl Sync for ReturnValue
impl Unpin for ReturnValue
impl UnwindSafe for ReturnValue
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more