[][src]Struct pspsdk_sys::sdk::SceThreadContext

#[repr(C)]pub struct SceThreadContext {
    pub type_: c_uint,
    pub gpr: [c_uint; 31],
    pub fpr: [c_uint; 32],
    pub fc31: c_uint,
    pub hi: c_uint,
    pub lo: c_uint,
    pub SR: c_uint,
    pub EPC: c_uint,
    pub field_114: c_uint,
    pub field_118: c_uint,
}

Thread context Structues for the thread context taken from florinsasu's post on the forums

Fields

type_: c_uintgpr: [c_uint; 31]fpr: [c_uint; 32]fc31: c_uinthi: c_uintlo: c_uintSR: c_uintEPC: c_uintfield_114: c_uintfield_118: c_uint

Trait Implementations

impl Clone for SceThreadContext[src]

impl Copy for SceThreadContext[src]

impl Debug for SceThreadContext[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.