[][src]Struct pspsdk_sys::sdk::SceKernelModuleInfo

#[repr(C)]pub struct SceKernelModuleInfo {
    pub size: SceSize,
    pub nsegment: c_char,
    pub reserved: [c_char; 3],
    pub segmentaddr: [c_int; 4],
    pub segmentsize: [c_int; 4],
    pub entry_addr: c_uint,
    pub gp_value: c_uint,
    pub text_addr: c_uint,
    pub text_size: c_uint,
    pub data_size: c_uint,
    pub bss_size: c_uint,
    pub attribute: c_ushort,
    pub version: [c_uchar; 2],
    pub name: [c_char; 28],
}

Fields

size: SceSizensegment: c_charreserved: [c_char; 3]segmentaddr: [c_int; 4]segmentsize: [c_int; 4]entry_addr: c_uintgp_value: c_uinttext_addr: c_uinttext_size: c_uintdata_size: c_uintbss_size: c_uintattribute: c_ushortversion: [c_uchar; 2]name: [c_char; 28]

Trait Implementations

impl Clone for SceKernelModuleInfo[src]

impl Copy for SceKernelModuleInfo[src]

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