[][src]Enum witx::CoreParamSignifies

pub enum CoreParamSignifies {
    Value(AtomType),
    PointerTo,
    LengthOf,
}

Enumerates the sort of relationship an WebAssembly parameter to an interface function parameter.

Variants

Value(AtomType)

Core type represents the value using an AtomType

PointerTo

Core type represents a pointer into linear memory

LengthOf

Core type represents a length of a region of linear memory

Implementations

impl CoreParamSignifies[src]

pub fn repr(&self) -> AtomType[src]

Representation of the WebAssembly parameter.

Trait Implementations

impl Clone for CoreParamSignifies[src]

impl Debug for CoreParamSignifies[src]

impl Eq for CoreParamSignifies[src]

impl PartialEq<CoreParamSignifies> for CoreParamSignifies[src]

impl StructuralEq for CoreParamSignifies[src]

impl StructuralPartialEq for CoreParamSignifies[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.