pub type CallSiteItem = EncodedArray;Expand description
The call site item is an encoded array of the following form:
- A method handle representing the bootstrap linker method (VALUE_METHOD_HANDLE).
- A method name that the bootstrap linker should resolve (VALUE_STRING).
- A method type corresponding to the type of the method name to be resolved (VALUE_METHOD_TYPE). … Any additional arguments are constant values passed to the bootstrap linker method.
Aliased Type§
struct CallSiteItem {
pub size: DULeb128,
pub values: Vec<EncodedValue>,
}Fields§
§size: DULeb128§values: Vec<EncodedValue>