pub struct CallIndirect<'a> {
pub index: &'a BV,
pub table_size: &'a BV,
pub slot_ptr: &'a BV,
pub type_trap: TypeTrap<'a>,
}Expand description
The operands of a call_indirect trap check (WASM §4.4.8) — the synth-BV
mirror of ordeal::trap::CallIndirect.
Fields§
§index: &'a BVThe table index operand.
table_size: &'a BVThe table’s element count.
slot_ptr: &'a BVThe loaded funcref word; a null (zero) slot traps before the call.
type_trap: TypeTrap<'a>How the element’s type is checked.
Auto Trait Implementations§
impl<'a> Freeze for CallIndirect<'a>
impl<'a> RefUnwindSafe for CallIndirect<'a>
impl<'a> Send for CallIndirect<'a>
impl<'a> Sync for CallIndirect<'a>
impl<'a> Unpin for CallIndirect<'a>
impl<'a> UnsafeUnpin for CallIndirect<'a>
impl<'a> UnwindSafe for CallIndirect<'a>
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