Struct wast::core::CallIndirect
source · pub struct CallIndirect<'a> {
pub table: Index<'a>,
pub ty: TypeUse<'a, FunctionType<'a>>,
}Expand description
Extra data associated with the call_indirect instruction.
Fields§
§table: Index<'a>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.