[]Struct symbolic::debuginfo::pdb::pdb::FunctionId

pub struct FunctionId<'t> {
    pub scope: Option<IdIndex>,
    pub function_type: TypeIndex,
    pub name: RawString<'t>,
}

Global function, usually inlined.

This Id is usually referenced by InlineSiteSymbol.

Fields

scope: Option<IdIndex>

Parent scope of this id.

function_type: TypeIndex

Index of the function type declaration.

name: RawString<'t>

Name of the function.

Trait Implementations

impl<'t> Clone for FunctionId<'t>

impl<'t> Debug for FunctionId<'t>

impl<'t> Eq for FunctionId<'t>

impl<'t> PartialEq<FunctionId<'t>> for FunctionId<'t>

impl<'t> StructuralEq for FunctionId<'t>

impl<'t> StructuralPartialEq for FunctionId<'t>

Auto Trait Implementations

impl<'t> RefUnwindSafe for FunctionId<'t>[src]

impl<'t> Send for FunctionId<'t>[src]

impl<'t> Sync for FunctionId<'t>[src]

impl<'t> Unpin for FunctionId<'t>[src]

impl<'t> UnwindSafe for FunctionId<'t>[src]

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.