#[repr(C)]pub struct WasmBranchTableInstruction {
pub labelIndices: *mut U32,
pub labelIndexCount: U32,
pub defaultLabelIndex: U32,
}Fields§
§labelIndices: *mut U32§labelIndexCount: U32§defaultLabelIndex: U32Implementations§
Source§impl WasmBranchTableInstruction
impl WasmBranchTableInstruction
Sourcepub fn builder() -> WasmBranchTableInstructionBuilder<((), (), ())>
pub fn builder() -> WasmBranchTableInstructionBuilder<((), (), ())>
Create a builder for building WasmBranchTableInstruction.
On the builder, call .labelIndices(...), .labelIndexCount(...), .defaultLabelIndex(...) to set the values of the fields.
Finally, call .build() to create the instance of WasmBranchTableInstruction.
Trait Implementations§
Source§impl Clone for WasmBranchTableInstruction
impl Clone for WasmBranchTableInstruction
Source§fn clone(&self) -> WasmBranchTableInstruction
fn clone(&self) -> WasmBranchTableInstruction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WasmBranchTableInstruction
impl Debug for WasmBranchTableInstruction
Source§impl Hash for WasmBranchTableInstruction
impl Hash for WasmBranchTableInstruction
impl Copy for WasmBranchTableInstruction
Auto Trait Implementations§
impl Freeze for WasmBranchTableInstruction
impl RefUnwindSafe for WasmBranchTableInstruction
impl !Send for WasmBranchTableInstruction
impl !Sync for WasmBranchTableInstruction
impl Unpin for WasmBranchTableInstruction
impl UnsafeUnpin for WasmBranchTableInstruction
impl UnwindSafe for WasmBranchTableInstruction
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