pub enum Value {
I32(i32),
I64(i64),
F32(f32),
F64(f64),
V128(u128),
}
Expand description
Constant values that can show up in WebAssembly
Variants§
I32(i32)
A constant 32-bit integer
I64(i64)
A constant 64-bit integer
F32(f32)
A constant 32-bit float
F64(f64)
A constant 64-bit float
V128(u128)
A constant 128-bit vector register
Trait Implementations§
impl Copy for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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