Struct wast::MemArg[][src]

pub struct MemArg<'a> {
    pub align: u32,
    pub offset: u32,
    pub memory: ItemRef<'a, memory>,
}

Payload for memory-related instructions indicating offset/alignment of memory accesses.

Fields

align: u32

The alignment of this access.

This is not stored as a log, this is the actual alignment (e.g. 1, 2, 4, 8, etc).

offset: u32

The offset, in bytes of this access.

memory: ItemRef<'a, memory>

The memory index we’re accessing

Trait Implementations

impl<'a> Debug for MemArg<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for MemArg<'a>

impl<'a> Send for MemArg<'a>

impl<'a> Sync for MemArg<'a>

impl<'a> Unpin for MemArg<'a>

impl<'a> UnwindSafe for MemArg<'a>

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, 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.