[][src]Struct pspsdk_sys::sdk::SceLibraryEntryTable

#[repr(C)]pub struct SceLibraryEntryTable {
    pub libname: *const c_char,
    pub version: [c_uchar; 2],
    pub attribute: c_ushort,
    pub len: c_uchar,
    pub vstubcount: c_uchar,
    pub stubcount: c_ushort,
    pub entrytable: *mut c_void,
}

Defines a library and its exported functions and variables. Use the len member to determine the real size of the table (size = len * 4).

Fields

libname: *const c_char

The library's name.

version: [c_uchar; 2]

Library version.

attribute: c_ushort

Library attributes.

len: c_uchar

Length of this entry table in 32-bit WORDs.

vstubcount: c_uchar

The number of variables exported by the library.

stubcount: c_ushort

The number of functions exported by the library.

entrytable: *mut c_void

Pointer to the entry table; an array of NIDs followed by pointers to functions and variables.

Trait Implementations

impl Clone for SceLibraryEntryTable[src]

impl Copy for SceLibraryEntryTable[src]

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