Struct easy_fs::layout::FATShortDirEnt
source · [−]#[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: FATDiskInodeType
nt_res: u8
crt_time_teenth: u8
crt_time: u16
crt_date: u16
last_acc_date: u16
fst_clus_hi: u16
wrt_time: u16
wrt_date: u16
fst_clus_lo: u16
file_size: u32
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FATShortDirEnt
impl Send for FATShortDirEnt
impl Sync for FATShortDirEnt
impl Unpin for FATShortDirEnt
impl UnwindSafe for FATShortDirEnt
Blanket Implementations
Mutably borrows from an owned value. Read more