[][src]Struct pdb::ProcedureSymbol

pub struct ProcedureSymbol {
    pub global: bool,
    pub parent: u32,
    pub end: u32,
    pub next: u32,
    pub len: u32,
    pub dbg_start_offset: u32,
    pub dbg_end_offset: u32,
    pub type_index: TypeIndex,
    pub offset: PdbInternalSectionOffset,
    pub flags: ProcedureFlags,
}

The information parsed from a symbol record with kind S_GPROC32, S_GPROC32_ST, S_LPROC32, S_LPROC32_ST S_GPROC32_ID, S_LPROC32_ID, S_LPROC32_DPC, or S_LPROC32_DPC_ID

Fields

global: boolparent: u32end: u32next: u32len: u32dbg_start_offset: u32dbg_end_offset: u32type_index: TypeIndexoffset: PdbInternalSectionOffsetflags: ProcedureFlags

Trait Implementations

impl Copy for ProcedureSymbol[src]

impl PartialEq<ProcedureSymbol> for ProcedureSymbol[src]

impl Clone for ProcedureSymbol[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for ProcedureSymbol[src]

impl Debug for ProcedureSymbol[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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