[][src]Struct wast::TableCopy

pub struct TableCopy<'a> {
    pub dst: Index<'a>,
    pub src: Index<'a>,
}

Extra data associated with the table.copy instruction.

Fields

dst: Index<'a>

The index of the destination table to copy into.

src: Index<'a>

The index of the source table to copy from.

Trait Implementations

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

impl<'a> Parse<'a> for TableCopy<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TableCopy<'a>

impl<'a> Send for TableCopy<'a>

impl<'a> Sync for TableCopy<'a>

impl<'a> Unpin for TableCopy<'a>

impl<'a> UnwindSafe for TableCopy<'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.