Struct pdb::ThreadStorageSymbol[][src]

pub struct ThreadStorageSymbol<'t> {
    pub global: bool,
    pub type_index: TypeIndex,
    pub offset: PdbInternalSectionOffset,
    pub name: RawString<'t>,
}

A thread local variable.

Symbol kinds:

  • S_LTHREAD32, S_LTHREAD32_ST for local thread storage.
  • S_GTHREAD32, or S_GTHREAD32_ST for global thread storage.

Fields

global: bool

Whether this is a global or local thread storage.

type_index: TypeIndex

Identifier of the stored type.

offset: PdbInternalSectionOffset

Code offset of the thread local.

name: RawString<'t>

Name of the thread local.

Trait Implementations

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

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

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

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

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

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

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

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

type Error = Error

Auto Trait Implementations

impl<'t> RefUnwindSafe for ThreadStorageSymbol<'t>

impl<'t> Send for ThreadStorageSymbol<'t>

impl<'t> Sync for ThreadStorageSymbol<'t>

impl<'t> Unpin for ThreadStorageSymbol<'t>

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