pub trait IntoValue {
    const VALUE_TYPE: ValueType;

    fn into_value(self) -> Value;
}
Expand description

Something that can be converted into a wasm compatible Value.

Required Associated Constants§

The type of the value in wasm.

Required Methods§

Convert self into a wasm Value.

Implementations on Foreign Types§

Implementors§