Struct pdb::ThunkSymbol[][src]

pub struct ThunkSymbol<'t> {
    pub parent: Option<SymbolIndex>,
    pub end: SymbolIndex,
    pub next: Option<SymbolIndex>,
    pub offset: PdbInternalSectionOffset,
    pub len: u16,
    pub kind: ThunkKind<'t>,
    pub name: RawString<'t>,
}

A thunk symbol.

Symbol kind S_THUNK32, or S_THUNK32_ST.

Fields

parent: Option<SymbolIndex>

The parent scope that this thunk is nested in.

end: SymbolIndex

The end symbol of this thunk.

next: Option<SymbolIndex>

The next symbol.

offset: PdbInternalSectionOffset

Code offset of the start of this label.

len: u16

The length of the thunk.

kind: ThunkKind<'t>

The kind of the thunk.

name: RawString<'t>

The thunk name.

Trait Implementations

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

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

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

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

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

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

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

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

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for ThunkSymbol<'t>

impl<'t> Send for ThunkSymbol<'t>

impl<'t> Sync for ThunkSymbol<'t>

impl<'t> Unpin for ThunkSymbol<'t>

impl<'t> UnwindSafe for ThunkSymbol<'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.