[][src]Struct winapi::um::winnt::NT_TIB

#[repr(C)]pub struct NT_TIB {
    pub ExceptionList: *mut EXCEPTION_REGISTRATION_RECORD,
    pub StackBase: PVOID,
    pub StackLimit: PVOID,
    pub SubSystemTib: PVOID,
    pub u: NT_TIB_u,
    pub ArbitraryUserPointer: PVOID,
    pub _Self: *mut NT_TIB,
}

Fields

ExceptionList: *mut EXCEPTION_REGISTRATION_RECORDStackBase: PVOIDStackLimit: PVOIDSubSystemTib: PVOIDu: NT_TIB_uArbitraryUserPointer: PVOID_Self: *mut NT_TIB

Trait Implementations

impl Clone for NT_TIB[src]

impl Copy for NT_TIB[src]

impl Default for NT_TIB[src]

Auto Trait Implementations

impl !Send for NT_TIB

impl !Sync for NT_TIB

impl Unpin for NT_TIB

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, 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.