Enum binaryen::ValueTy [] [src]

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

Type of the values. For example, these can be found on a stack and in local vars.

Note that the value types I32 and I64 are not inherently signed or unsigned. The interpretation of these types is determined by individual operators.

Variants

32-bit integer

64-bit integer

32-bit floating point

64-bit floating point

Trait Implementations

impl Copy for ValueTy
[src]

impl Clone for ValueTy
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ValueTy
[src]

[src]

Formats the value using the given formatter.

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

impl Hash for ValueTy
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more