Struct wast::CallIndirect
source · [−]pub struct CallIndirect<'a> {
pub table: ItemRef<'a, table>,
pub ty: TypeUse<'a, FunctionType<'a>>,
}
Expand description
Extra data associated with the call_indirect
instruction.
Fields
table: ItemRef<'a, table>
The table that this call is going to be indexing.
ty: TypeUse<'a, FunctionType<'a>>
Type type signature that this call_indirect
instruction is using.
Trait Implementations
sourceimpl<'a> Debug for CallIndirect<'a>
impl<'a> Debug for CallIndirect<'a>
Auto Trait Implementations
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> UnwindSafe for CallIndirect<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more