pub enum CallHook {
CallingWasm,
ReturningFromWasm,
CallingHost,
ReturningFromHost,
}
Expand description
Passed to the argument of Store::call_hook
to indicate a state transition in
the WebAssembly VM.
Variants
CallingWasm
Indicates the VM is calling a WebAssembly function, from the host.
ReturningFromWasm
Indicates the VM is returning from a WebAssembly function, to the host.
CallingHost
Indicates the VM is calling a host function, from WebAssembly.
ReturningFromHost
Indicates the VM is returning from a host function, to WebAssembly.
Implementations
sourceimpl CallHook
impl CallHook
sourcepub fn entering_host(&self) -> bool
pub fn entering_host(&self) -> bool
Indicates the VM is entering host code (exiting WebAssembly code)
sourcepub fn exiting_host(&self) -> bool
pub fn exiting_host(&self) -> bool
Indicates the VM is exiting host code (entering WebAssembly code)
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CallHook
impl Send for CallHook
impl Sync for CallHook
impl Unpin for CallHook
impl UnwindSafe for CallHook
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more