Struct pdb::PublicSymbol[][src]

pub struct PublicSymbol<'t> {
    pub code: bool,
    pub function: bool,
    pub managed: bool,
    pub msil: bool,
    pub offset: PdbInternalSectionOffset,
    pub name: RawString<'t>,
}

A public symbol with a mangled name.

Symbol kind S_PUB32, or S_PUB32_ST.

Fields

code: bool

The public symbol refers to executable code.

function: bool

The public symbol is a function.

managed: bool

The symbol is in managed code (native or IL).

msil: bool

The symbol is managed IL code.

offset: PdbInternalSectionOffset

Start offset of the symbol.

name: RawString<'t>

Mangled name of the symbol.

Trait Implementations

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

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

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

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

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

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

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

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

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for PublicSymbol<'t>

impl<'t> Send for PublicSymbol<'t>

impl<'t> Sync for PublicSymbol<'t>

impl<'t> Unpin for PublicSymbol<'t>

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