#[repr(packed)]
pub struct FATShortDirEnt { pub name: [u8; 11], pub attr: FATDiskInodeType, pub nt_res: u8, pub crt_time_teenth: u8, pub crt_time: u16, pub crt_date: u16, pub last_acc_date: u16, pub fst_clus_hi: u16, pub wrt_time: u16, pub wrt_date: u16, pub fst_clus_lo: u16, pub file_size: u32, }
Expand description

On-disk & in-file data structure for FAT32 directory.

Fields

name: [u8; 11]

name, offset

attr: FATDiskInodeTypent_res: u8crt_time_teenth: u8crt_time: u16crt_date: u16last_acc_date: u16fst_clus_hi: u16wrt_time: u16wrt_date: u16fst_clus_lo: u16file_size: u32

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.