[][src]Struct pspsdk_sys::sdk::SceKernelCallbackInfo

#[repr(C)]pub struct SceKernelCallbackInfo {
    pub size: SceSize,
    pub name: [c_char; 32],
    pub threadId: SceUID,
    pub callback: SceKernelCallbackFunction,
    pub common: *mut c_void,
    pub notifyCount: c_int,
    pub notifyArg: c_int,
}

Structure to hold the status information for a callback

Fields

size: SceSize

Size of the structure (i.e. sizeof(SceKernelCallbackInfo))

name: [c_char; 32]

The name given to the callback

threadId: SceUID

The thread id associated with the callback

callback: SceKernelCallbackFunction

Pointer to the callback function

common: *mut c_void

User supplied argument for the callback

notifyCount: c_int

Unknown

notifyArg: c_int

Unknown

Trait Implementations

impl Clone for SceKernelCallbackInfo[src]

impl Copy for SceKernelCallbackInfo[src]

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