Trait tetcore_wasm_interface::TryFromValue[][src]

pub trait TryFromValue: Sized {
    fn try_from_value(val: Value) -> Option<Self>;
}
Expand description

Something that can may be created from a wasm Value.

Required methods

Try to convert the given Value into Self.

Implementations on Foreign Types

Implementors