#[repr(C)]pub struct SceKernelThreadRunStatus {
pub size: usize,
pub status: i32,
pub current_priority: i32,
pub wait_type: i32,
pub wait_id: i32,
pub wakeup_count: i32,
pub run_clocks: SceKernelSysClock,
pub intr_preempt_count: u32,
pub thread_preempt_count: u32,
pub release_count: u32,
}Expand description
Statistics about a running thread. See sceKernelReferThreadRunStatus.
Fields§
§size: usize§status: i32§current_priority: i32§wait_type: i32§wait_id: i32§wakeup_count: i32§run_clocks: SceKernelSysClock§intr_preempt_count: u32§thread_preempt_count: u32§release_count: u32Trait Implementations§
Source§impl Clone for SceKernelThreadRunStatus
impl Clone for SceKernelThreadRunStatus
Source§fn clone(&self) -> SceKernelThreadRunStatus
fn clone(&self) -> SceKernelThreadRunStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SceKernelThreadRunStatus
Auto Trait Implementations§
impl Freeze for SceKernelThreadRunStatus
impl RefUnwindSafe for SceKernelThreadRunStatus
impl Send for SceKernelThreadRunStatus
impl Sync for SceKernelThreadRunStatus
impl Unpin for SceKernelThreadRunStatus
impl UnsafeUnpin for SceKernelThreadRunStatus
impl UnwindSafe for SceKernelThreadRunStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more