[][src]Struct pspsdk_sys::sdk::_uidControlBlock

#[repr(C, packed)]pub struct _uidControlBlock {
    pub parent: *mut _uidControlBlock,
    pub nextChild: *mut _uidControlBlock,
    pub type_: *mut _uidControlBlock,
    pub UID: u32,
    pub name: *mut c_char,
    pub unk: c_uchar,
    pub size: c_uchar,
    pub attribute: c_short,
    pub nextEntry: *mut _uidControlBlock,
}

Structure of a UID control block

Fields

parent: *mut _uidControlBlocknextChild: *mut _uidControlBlocktype_: *mut _uidControlBlockUID: u32name: *mut c_charunk: c_ucharsize: c_ucharattribute: c_shortnextEntry: *mut _uidControlBlock

Trait Implementations

impl Clone for _uidControlBlock[src]

impl Copy for _uidControlBlock[src]

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