pub enum SpecValue {
I32(i32),
I64(i64),
F32(i32),
F64(i64),
V128(Vec<u8>),
}
Expand description
Enumerate the kinds of Wasm values the OCaml interpreter can handle.
Variants§
Trait Implementations§
impl StructuralPartialEq for SpecValue
Auto Trait Implementations§
impl Freeze for SpecValue
impl RefUnwindSafe for SpecValue
impl Send for SpecValue
impl Sync for SpecValue
impl Unpin for SpecValue
impl UnwindSafe for SpecValue
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