#[repr(C)]
pub struct SceKernelThreadInfo {
Show 24 fields pub size: SceSize, pub processId: SceUID, pub name: [c_char; 32], pub attr: SceUInt32, pub status: SceUInt32, pub entry: SceKernelThreadEntry, pub stack: *mut c_void, pub stackSize: SceInt32, pub initPriority: SceInt32, pub currentPriority: SceInt32, pub initCpuAffinityMask: SceInt32, pub currentCpuAffinityMask: SceInt32, pub currentCpuId: SceInt32, pub lastExecutedCpuId: SceInt32, pub waitType: SceUInt32, pub waitId: SceUID, pub exitStatus: SceInt32, pub runClocks: SceKernelSysClock, pub intrPreemptCount: SceUInt32, pub threadPreemptCount: SceUInt32, pub threadReleaseCount: SceUInt32, pub changeCpuCount: SceInt32, pub fNotifyCallback: SceInt32, pub reserved: SceInt32,
}

Fields§

§size: SceSize§processId: SceUID§name: [c_char; 32]§attr: SceUInt32§status: SceUInt32§entry: SceKernelThreadEntry§stack: *mut c_void§stackSize: SceInt32§initPriority: SceInt32§currentPriority: SceInt32§initCpuAffinityMask: SceInt32§currentCpuAffinityMask: SceInt32§currentCpuId: SceInt32§lastExecutedCpuId: SceInt32§waitType: SceUInt32§waitId: SceUID§exitStatus: SceInt32§runClocks: SceKernelSysClock§intrPreemptCount: SceUInt32§threadPreemptCount: SceUInt32§threadReleaseCount: SceUInt32§changeCpuCount: SceInt32§fNotifyCallback: SceInt32§reserved: SceInt32

Trait Implementations§

source§

impl Clone for SceKernelThreadInfo

source§

fn clone(&self) -> SceKernelThreadInfo

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SceKernelThreadInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for SceKernelThreadInfo

Auto Trait Implementations§

§

impl RefUnwindSafe for SceKernelThreadInfo

§

impl !Send for SceKernelThreadInfo

§

impl !Sync for SceKernelThreadInfo

§

impl Unpin for SceKernelThreadInfo

§

impl UnwindSafe for SceKernelThreadInfo

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.