pub struct VarDirEntry {
pub name: [u8; 30],
pub name_len: u8,
pub entry_type: EntryType,
pub block: u32,
pub parent: u32,
pub size: u32,
pub date: AmigaDate,
}Expand description
Directory entry for variable block size filesystem.
Fields§
§name: [u8; 30]Entry name.
name_len: u8Name length.
entry_type: EntryTypeEntry type.
block: u32Block number.
parent: u32Parent block.
size: u32File size.
date: AmigaDateModification date.
Implementations§
Source§impl VarDirEntry
impl VarDirEntry
Sourcepub const fn is_symlink(&self) -> bool
pub const fn is_symlink(&self) -> bool
Check if this is a symlink.
Trait Implementations§
Source§impl Clone for VarDirEntry
impl Clone for VarDirEntry
Source§fn clone(&self) -> VarDirEntry
fn clone(&self) -> VarDirEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VarDirEntry
impl RefUnwindSafe for VarDirEntry
impl Send for VarDirEntry
impl Sync for VarDirEntry
impl Unpin for VarDirEntry
impl UnwindSafe for VarDirEntry
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