#[repr(C)]pub struct NfpData {Show 25 fields
pub unk_0xA5: u8,
pub maybe_pad: u8,
pub unk_v1: u16,
pub unk_v2: u32,
pub maybe_reserved: [u8; 56],
pub last_write_date: Date,
pub unk_v3: u16,
pub unk_v4: u8,
pub maybe_pad_2: u8,
pub app_area_size: u32,
pub maybe_pad_3: [u8; 4],
pub maybe_reserved_2: [u8; 48],
pub mii_3ds_format: [u8; 96],
pub unk_v5: [u8; 8],
pub first_write_date: Date,
pub name: CString16<11>,
pub unk_v6: u8,
pub unk_v7: u8,
pub unk_v8: u32,
pub unk_v9: u64,
pub unk_v10: u64,
pub unk_v11: u32,
pub maybe_reserved_3: [u8; 100],
pub admin_info: AdminInfo,
pub app_area: [u8; 216],
}
Fields
unk_0xA5: u8
maybe_pad: u8
unk_v1: u16
unk_v2: u32
maybe_reserved: [u8; 56]
last_write_date: Date
unk_v3: u16
unk_v4: u8
maybe_pad_2: u8
app_area_size: u32
maybe_pad_3: [u8; 4]
maybe_reserved_2: [u8; 48]
mii_3ds_format: [u8; 96]
unk_v5: [u8; 8]
first_write_date: Date
name: CString16<11>
unk_v6: u8
unk_v7: u8
unk_v8: u32
unk_v9: u64
unk_v10: u64
unk_v11: u32
maybe_reserved_3: [u8; 100]
admin_info: AdminInfo
app_area: [u8; 216]
Trait Implementations
impl Copy for NfpData
impl Eq for NfpData
impl StructuralEq for NfpData
impl StructuralPartialEq for NfpData
Auto Trait Implementations
impl RefUnwindSafe for NfpData
impl Send for NfpData
impl Sync for NfpData
impl Unpin for NfpData
impl UnwindSafe for NfpData
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> RequestCommandParameter for T where
T: Copy,
impl<T> RequestCommandParameter for T where
T: Copy,
default fn before_request_write(
_raw: &T,
walker: &mut DataWalker,
_ctx: &mut CommandContext
) -> Result<(), ResultCode>
default fn before_send_sync_request(
raw: &T,
walker: &mut DataWalker,
_ctx: &mut CommandContext
) -> Result<(), ResultCode>
sourceimpl<T> RequestCommandParameter<T> for T where
T: Copy,
impl<T> RequestCommandParameter<T> for T where
T: Copy,
default fn after_request_read(
ctx: &mut ServerContext<'_>
) -> Result<T, ResultCode>
sourceimpl<T> ResponseCommandParameter for T where
T: Copy,
impl<T> ResponseCommandParameter for T where
T: Copy,
default fn before_response_write(
_raw: &T,
ctx: &mut ServerContext<'_>
) -> Result<(), ResultCode>
default fn after_response_write(
raw: &T,
ctx: &mut ServerContext<'_>
) -> Result<(), ResultCode>
sourceimpl<T> ResponseCommandParameter<T> for T where
T: Copy,
impl<T> ResponseCommandParameter<T> for T where
T: Copy,
default fn after_response_read(
walker: &mut DataWalker,
_ctx: &mut CommandContext
) -> Result<T, ResultCode>
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more