[][src]Struct wabt::script::Command

pub struct Command<F32 = f32, F64 = f64> {
    pub line: u64,
    pub kind: CommandKind<F32, F64>,
}

Command in the script.

It consists of line number and CommandKind.

Fields

line: u64

Line number the command is defined on.

kind: CommandKind<F32, F64>

Kind of the command.

Trait Implementations

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

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

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

Auto Trait Implementations

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

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

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

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

impl<F32, F64> UnwindSafe for Command<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]