#[repr(C)]pub struct WasmCallIndirectInstruction {
pub functionTypeIndex: U32,
pub tableIndex: U32,
}Fields§
§functionTypeIndex: U32§tableIndex: U32Implementations§
Source§impl WasmCallIndirectInstruction
impl WasmCallIndirectInstruction
Sourcepub fn builder() -> WasmCallIndirectInstructionBuilder<((), ())>
pub fn builder() -> WasmCallIndirectInstructionBuilder<((), ())>
Create a builder for building WasmCallIndirectInstruction.
On the builder, call .functionTypeIndex(...), .tableIndex(...) to set the values of the fields.
Finally, call .build() to create the instance of WasmCallIndirectInstruction.
Trait Implementations§
Source§impl Clone for WasmCallIndirectInstruction
impl Clone for WasmCallIndirectInstruction
Source§fn clone(&self) -> WasmCallIndirectInstruction
fn clone(&self) -> WasmCallIndirectInstruction
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 ConstDefault for WasmCallIndirectInstructionwhere
U32: ConstDefault,
impl ConstDefault for WasmCallIndirectInstructionwhere
U32: ConstDefault,
Source§impl Debug for WasmCallIndirectInstruction
impl Debug for WasmCallIndirectInstruction
Source§impl Hash for WasmCallIndirectInstruction
impl Hash for WasmCallIndirectInstruction
impl Copy for WasmCallIndirectInstruction
Auto Trait Implementations§
impl Freeze for WasmCallIndirectInstruction
impl RefUnwindSafe for WasmCallIndirectInstruction
impl Send for WasmCallIndirectInstruction
impl Sync for WasmCallIndirectInstruction
impl Unpin for WasmCallIndirectInstruction
impl UnsafeUnpin for WasmCallIndirectInstruction
impl UnwindSafe for WasmCallIndirectInstruction
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