[][src]Struct haiku_sys::thread_info

#[repr(C)]
pub struct thread_info { pub thread: thread_id, pub team: team_id, pub name: [c_char; 32], pub state: thread_state, pub priority: i32, pub sem: sem_id, pub user_time: bigtime_t, pub kernel_time: bigtime_t, pub stack_base: *mut c_void, pub stack_end: *mut c_void, }

Fields

thread: thread_idteam: team_idname: [c_char; 32]state: thread_statepriority: i32sem: sem_iduser_time: bigtime_tkernel_time: bigtime_tstack_base: *mut c_voidstack_end: *mut c_void

Auto Trait Implementations

impl !Send for thread_info

impl !Sync for thread_info

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.