pub enum OnLowWasmMemoryHookStatus {
ConditionNotSatisfied,
Ready,
Executed,
}Expand description
The status of a low wasm memory hook.
Variants§
ConditionNotSatisfied
The condition for the low wasm memory hook is not satisfied.
Ready
The low wasm memory hook is ready to be executed.
Executed
The low wasm memory hook has been executed.
Trait Implementations§
Source§impl Clone for OnLowWasmMemoryHookStatus
impl Clone for OnLowWasmMemoryHookStatus
Source§fn clone(&self) -> OnLowWasmMemoryHookStatus
fn clone(&self) -> OnLowWasmMemoryHookStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OnLowWasmMemoryHookStatus
impl Debug for OnLowWasmMemoryHookStatus
Source§impl<'de> Deserialize<'de> for OnLowWasmMemoryHookStatus
impl<'de> Deserialize<'de> for OnLowWasmMemoryHookStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OnLowWasmMemoryHookStatus
impl RefUnwindSafe for OnLowWasmMemoryHookStatus
impl Send for OnLowWasmMemoryHookStatus
impl Sync for OnLowWasmMemoryHookStatus
impl Unpin for OnLowWasmMemoryHookStatus
impl UnwindSafe for OnLowWasmMemoryHookStatus
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