Enum wasmi::ValueType [] [src]

pub enum ValueType {
    I32,
    I64,
    F32,
    F64,
}

Type of a value.

Wasm code manipulate values of the four basic value types: integers and floating-point (IEEE 754-2008) data of 32 or 64 bit width each, respectively.

There is no distinction between signed and unsigned integer types. Instead, integers are interpreted by respective operations as either unsigned or signed in two’s complement representation.

Variants

Trait Implementations

impl Copy for ValueType
[src]

impl Clone for ValueType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ValueType
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for ValueType
[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 Eq for ValueType
[src]