[][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

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.