[][src]Struct pspsdk_sys::sdk::SceKernelSystemStatus

#[repr(C)]pub struct SceKernelSystemStatus {
    pub size: SceSize,
    pub status: SceUInt,
    pub idleClocks: SceKernelSysClock,
    pub comesOutOfIdleCount: SceUInt,
    pub threadSwitchCount: SceUInt,
    pub vfpuSwitchCount: SceUInt,
}

Structure to contain the system status returned by ::sceKernelReferSystemStatus

Fields

size: SceSize

Size of the structure (should be set prior to the call)

status: SceUInt

The status ?

idleClocks: SceKernelSysClock

The number of cpu clocks in the idle thread

comesOutOfIdleCount: SceUInt

Number of times we resumed from idle

threadSwitchCount: SceUInt

Number of thread context switches

vfpuSwitchCount: SceUInt

Number of vfpu switches ?

Trait Implementations

impl Clone for SceKernelSystemStatus[src]

impl Copy for SceKernelSystemStatus[src]

impl Debug for SceKernelSystemStatus[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.