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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ValueTy
[src]

Formats the value using the given formatter. Read more

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

impl Hash for ValueTy
[src]

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

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

impl From<ValueTy> for Ty
[src]

Performs the conversion.

impl From<ValueTy> for BinaryenType
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ValueTy

impl Sync for ValueTy