Enum parity_wasm::interpreter::VariableType [] [src]

pub enum VariableType {
    AnyFunc,
    I32,
    I64,
    F32,
    F64,
}
Deprecated since 0.23

: Use wasmi crate to interpret wasm

Variable type.

Variants

Deprecated since 0.23

: Use wasmi crate to interpret wasm

Any func value.

Deprecated since 0.23

: Use wasmi crate to interpret wasm

i32 value.

Deprecated since 0.23

: Use wasmi crate to interpret wasm

i64 value.

Deprecated since 0.23

: Use wasmi crate to interpret wasm

f32 value.

Deprecated since 0.23

: Use wasmi crate to interpret wasm

f64 value.

Trait Implementations

impl Debug for VariableType
[src]

[src]

Formats the value using the given formatter.

impl Clone for VariableType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for VariableType
[src]

impl PartialEq for VariableType
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl From<ValueType> for VariableType
[src]

[src]

Performs the conversion.

impl From<TableElementType> for VariableType
[src]

[src]

Performs the conversion.