#[repr(C)]pub struct Entry {
pub name: [u8; 11],
pub properties: Stat,
}Expand description
Describes an entry in a directory.
This is set up for 8.3 filenames on MS-DOS FAT32 partitions currently.
Fields§
§name: [u8; 11]The name and extension of the file.
The name and extension are separated by a single ‘.’.
The filename will be in ASCII. Unicode filenames are not supported.
properties: StatThe properties for the file/directory this entry represents.
Trait Implementations§
impl Eq for Entry
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more