#[non_exhaustive]
pub enum Strategy {
Auto,
Cranelift,
Lightbeam,
}
Possible Compilation strategies for a wasm module.
This is used as an argument to the Config::strategy
method.
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
An indicator that the compilation strategy should be automatically
selected.
This is generally what you want for most projects and indicates that the
wasmtime
crate itself should make the decision about what the best
code generator for a wasm module is.
Currently this always defaults to Cranelift, but the default value will
change over time.
Currently the default backend, Cranelift aims to be a reasonably fast
code generator which generates high quality machine code.
A single-pass code generator that is faster than Cranelift but doesn’t
produce as high-quality code.
To successfully pass this argument to Config::strategy
the
lightbeam
feature of this crate must be enabled.
Formats the value using the given formatter. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
[src]
The alignment of pointer.
type Init = T
The type for initializers.
Initializes a with the given initializer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.