Enum wasmi::ValueType[][src]

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

Type of a value.

See RuntimeValue for details.

Variants

32-bit signed or unsigned integer.

64-bit signed or unsigned integer.

32-bit IEEE 754-2008 floating point number.

64-bit IEEE 754-2008 floating point number.

Trait Implementations

impl Copy for ValueType
[src]

impl Clone for ValueType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ValueType
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ValueType
[src]

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

This method tests for !=.

impl Eq for ValueType
[src]

Auto Trait Implementations

impl Send for ValueType

impl Sync for ValueType