Struct pdb::InlineSiteSymbol[][src]

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

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

impl<'t> Clone for InlineSiteSymbol<'t>[src]

impl<'t> Copy for InlineSiteSymbol<'t>[src]

impl<'t> Debug for InlineSiteSymbol<'t>[src]

impl<'t> Eq for InlineSiteSymbol<'t>[src]

impl<'t> PartialEq<InlineSiteSymbol<'t>> for InlineSiteSymbol<'t>[src]

impl<'t> StructuralEq for InlineSiteSymbol<'t>[src]

impl<'t> StructuralPartialEq for InlineSiteSymbol<'t>[src]

impl<'t> TryFromCtx<'t, u16, [u8]> for InlineSiteSymbol<'t>[src]

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for InlineSiteSymbol<'t>

impl<'t> Send for InlineSiteSymbol<'t>

impl<'t> Sync for InlineSiteSymbol<'t>

impl<'t> Unpin for InlineSiteSymbol<'t>

impl<'t> UnwindSafe for InlineSiteSymbol<'t>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.