[][src]Struct pspsdk_sys::sdk::SceKernelThreadRunStatus

#[repr(C)]pub struct SceKernelThreadRunStatus {
    pub size: SceSize,
    pub status: c_int,
    pub currentPriority: c_int,
    pub waitType: c_int,
    pub waitId: c_int,
    pub wakeupCount: c_int,
    pub runClocks: SceKernelSysClock,
    pub intrPreemptCount: SceUInt,
    pub threadPreemptCount: SceUInt,
    pub releaseCount: SceUInt,
}

Statistics about a running thread. @see sceKernelReferThreadRunStatus.

Fields

size: SceSizestatus: c_intcurrentPriority: c_intwaitType: c_intwaitId: c_intwakeupCount: c_intrunClocks: SceKernelSysClockintrPreemptCount: SceUIntthreadPreemptCount: SceUIntreleaseCount: SceUInt

Trait Implementations

impl Clone for SceKernelThreadRunStatus[src]

impl Copy for SceKernelThreadRunStatus[src]

impl Debug for SceKernelThreadRunStatus[src]

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.