[][src]Struct nnsdk::os::ThreadType

#[repr(C)]pub struct ThreadType {
    pub _0: [u8; 64],
    pub State: u32,
    pub _44: bool,
    pub _45: bool,
    pub _46: u8,
    pub PriorityBase: u32,
    pub StackBase: *mut c_void,
    pub Stack: *mut c_void,
    pub StackSize: size_t,
    pub Arg: *mut c_void,
    pub ThreadFunc: u64,
    pub _88: [u8; 256],
    pub Name: [c_char; 32],
    pub Crit: InternalCriticalSection,
    pub Condvar: InternalConditionVariable,
    pub Handle: u32,
    pub padding: [u8; 24],
}

Fields

_0: [u8; 64]State: u32_44: bool_45: bool_46: u8PriorityBase: u32StackBase: *mut c_voidStack: *mut c_voidStackSize: size_tArg: *mut c_voidThreadFunc: u64_88: [u8; 256]Name: [c_char; 32]Crit: InternalCriticalSectionCondvar: InternalConditionVariableHandle: u32padding: [u8; 24]

Auto Trait Implementations

impl !Send for ThreadType

impl !Sync for ThreadType

impl Unpin for ThreadType

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.