[][src]Enum wabt::script::Value

pub enum Value<F32 = f32, F64 = f64> {
    I32(i32),
    I64(i64),
    F32(F32),
    F64(F64),
    V128(u128),
}

Wasm value

Variants

I32(i32)

32-bit signed or unsigned integer.

I64(i64)

64-bit signed or unsigned integer.

F32(F32)

32-bit floating point number.

F64(F64)

64-bit floating point number.

V128(u128)

128-bit vector.

Trait Implementations

impl<F32: Clone, F64: Clone> Clone for Value<F32, F64>[src]

impl<F32: PartialOrd, F64: PartialOrd> PartialOrd<Value<F32, F64>> for Value<F32, F64>[src]

impl<F32: PartialEq, F64: PartialEq> PartialEq<Value<F32, F64>> for Value<F32, F64>[src]

impl<F32: Copy, F64: Copy> Copy for Value<F32, F64>[src]

impl<F32: Debug, F64: Debug> Debug for Value<F32, F64>[src]

Auto Trait Implementations

impl<F32, F64> Sync for Value<F32, F64> where
    F32: Sync,
    F64: Sync

impl<F32, F64> Send for Value<F32, F64> where
    F32: Send,
    F64: Send

impl<F32, F64> Unpin for Value<F32, F64> where
    F32: Unpin,
    F64: Unpin

impl<F32, F64> RefUnwindSafe for Value<F32, F64> where
    F32: RefUnwindSafe,
    F64: RefUnwindSafe

impl<F32, F64> UnwindSafe for Value<F32, F64> where
    F32: UnwindSafe,
    F64: UnwindSafe

Blanket Implementations

impl<T> FromBits<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]