[][src]Struct pspsdk_sys::sdk::RegParam

#[repr(C)]pub struct RegParam {
    pub regtype: c_uint,
    pub name: [c_char; 256],
    pub namelen: c_uint,
    pub unk2: c_uint,
    pub unk3: c_uint,
}

Struct used to open a registry

Fields

regtype: c_uintname: [c_char; 256]

Seemingly never used, set to ::SYSTEM_REGISTRY

namelen: c_uint

Length of the name

unk2: c_uint

Unknown, set to 1

unk3: c_uint

Unknown, set to 1

Trait Implementations

impl Clone for RegParam[src]

impl Copy for RegParam[src]

Auto Trait Implementations

impl Send for RegParam

impl Sync for RegParam

impl Unpin for RegParam

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.