pub struct InlineSiteSymbol<'t> {
    pub parent: Option<SymbolIndex>,
    pub end: SymbolIndex,
    pub inlinee: IdIndex,
    pub invocations: Option<u32>,
    pub annotations: BinaryAnnotations<'t>,
}
Expand description

The callsite of an inlined function.

Symbol kind S_INLINESITE, or S_INLINESITE2.

Fields

parent: Option<SymbolIndex>

Index of the parent function.

This might either be a ProcedureSymbol or another InlineSiteSymbol.

end: SymbolIndex

The end symbol of this callsite.

inlinee: IdIndex

Identifier of the type describing the inline function.

invocations: Option<u32>

The total number of invocations of the inline function.

annotations: BinaryAnnotations<'t>

Binary annotations containing the line program of this call site.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.