Struct wasmer_wast_asml_fork::Wast[][src]

pub struct Wast {
    pub fail_fast: bool,
    // some fields omitted
}

The wast test script language allows modules to be defined and actions to be performed on them.

Fields

fail_fast: bool

A flag indicating if Wast tests should stop as soon as one test fails.

Implementations

impl Wast[src]

pub fn new(store: Store, import_object: ImportObject) -> Self[src]

Construct a new instance of Wast with a given imports.

pub fn allow_instantiation_failures(&mut self, failures: &[&str])[src]

A list of instantiation failures to allow.

pub fn allow_trap_message(&mut self, expected: &str, allowed: &str)[src]

A list of alternative messages to permit for a trap failure.

pub fn disable_assert_and_exhaustion(&mut self)[src]

Do not run any code in assert_trap or assert_exhaustion.

pub fn new_with_spectest(store: Store) -> Self[src]

Construct a new instance of Wast with the spectests imports.

pub fn run_buffer(&mut self, filename: &str, wast: &[u8]) -> Result<()>[src]

Run a wast script from a byte buffer.

pub fn run_file(&mut self, path: &Path) -> Result<()>[src]

Run a wast script from a file.

Auto Trait Implementations

impl !RefUnwindSafe for Wast[src]

impl !Send for Wast[src]

impl !Sync for Wast[src]

impl Unpin for Wast[src]

impl !UnwindSafe for Wast[src]

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,