Struct pdb::LabelSymbol[][src]

pub struct LabelSymbol<'t> {
    pub offset: PdbInternalSectionOffset,
    pub flags: ProcedureFlags,
    pub name: RawString<'t>,
}

A label symbol.

Symbol kind S_LABEL32, S_LABEL16, or S_LABEL32_ST.

Fields

offset: PdbInternalSectionOffset

Code offset of the start of this label.

flags: ProcedureFlags

Detailed flags of this label.

name: RawString<'t>

Name of the symbol.

Trait Implementations

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

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

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

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

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

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

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

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

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for LabelSymbol<'t>

impl<'t> Send for LabelSymbol<'t>

impl<'t> Sync for LabelSymbol<'t>

impl<'t> Unpin for LabelSymbol<'t>

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