Struct tinywasm::DefaultRuntime
source · pub struct DefaultRuntime {}Expand description
A WebAssembly Runtime.
Generic over CheckTypes to enable type checking at runtime.
This is useful for debugging, but should be disabled if you know
that the module is valid.
See https://webassembly.github.io/spec/core/exec/runtime.html
Execution is implemented in the [crate::runtime::executor] module
Trait Implementations§
source§impl Debug for DefaultRuntime
impl Debug for DefaultRuntime
source§impl Default for DefaultRuntime
impl Default for DefaultRuntime
source§fn default() -> DefaultRuntime
fn default() -> DefaultRuntime
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for DefaultRuntime
impl Send for DefaultRuntime
impl Sync for DefaultRuntime
impl Unpin for DefaultRuntime
impl UnwindSafe for DefaultRuntime
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more