Type Alias CallSiteItem

Source
pub type CallSiteItem = EncodedArray;
Expand description

The call site item is an encoded array of the following form:

  1. A method handle representing the bootstrap linker method (VALUE_METHOD_HANDLE).
  2. A method name that the bootstrap linker should resolve (VALUE_STRING).
  3. 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>