Struct pdb::LocalSymbol[][src]

pub struct LocalSymbol<'t> {
    pub type_index: TypeIndex,
    pub flags: LocalVariableFlags,
    pub name: RawString<'t>,
}

A local symbol in optimized code.

Symbol kind S_LOCAL.

Fields

type_index: TypeIndex

The type of the symbol.

flags: LocalVariableFlags

Flags for this symbol.

name: RawString<'t>

Name of the symbol.

Trait Implementations

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

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

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

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

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

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

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

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

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for LocalSymbol<'t>

impl<'t> Send for LocalSymbol<'t>

impl<'t> Sync for LocalSymbol<'t>

impl<'t> Unpin for LocalSymbol<'t>

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