pub enum V128Const {
I8x16([i8; 16]),
I16x8([i16; 8]),
I32x4([i32; 4]),
I64x2([i64; 2]),
F32x4([Float32; 4]),
F64x2([Float64; 2]),
}
Expand description
Different ways to specify a v128.const
instruction
Variants§
I8x16([i8; 16])
I16x8([i16; 8])
I32x4([i32; 4])
I64x2([i64; 2])
F32x4([Float32; 4])
F64x2([Float64; 2])
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for V128Const
impl Send for V128Const
impl Sync for V128Const
impl Unpin for V128Const
impl UnwindSafe for V128Const
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