pub struct DirectoryEntryPlus {
pub kind: FileType,
pub name: OsString,
pub offset: i64,
pub attr: FileAttr,
pub entry_ttl: Duration,
pub attr_ttl: Duration,
}
Expand description
directory entry with attribute
Fields§
§kind: FileType
the entry kind.
name: OsString
the entry name.
offset: i64
Directory offset of the next entry
attr: FileAttr
the entry attribute.
entry_ttl: Duration
the entry TTL.
attr_ttl: Duration
the attribute TTL.
Trait Implementations§
Source§impl Clone for DirectoryEntryPlus
impl Clone for DirectoryEntryPlus
Source§fn clone(&self) -> DirectoryEntryPlus
fn clone(&self) -> DirectoryEntryPlus
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 moreSource§impl Debug for DirectoryEntryPlus
impl Debug for DirectoryEntryPlus
Source§impl Hash for DirectoryEntryPlus
impl Hash for DirectoryEntryPlus
Source§impl Ord for DirectoryEntryPlus
impl Ord for DirectoryEntryPlus
Source§fn cmp(&self, other: &DirectoryEntryPlus) -> Ordering
fn cmp(&self, other: &DirectoryEntryPlus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DirectoryEntryPlus
impl PartialEq for DirectoryEntryPlus
Source§impl PartialOrd for DirectoryEntryPlus
impl PartialOrd for DirectoryEntryPlus
impl Eq for DirectoryEntryPlus
impl StructuralPartialEq for DirectoryEntryPlus
Auto Trait Implementations§
impl Freeze for DirectoryEntryPlus
impl RefUnwindSafe for DirectoryEntryPlus
impl Send for DirectoryEntryPlus
impl Sync for DirectoryEntryPlus
impl Unpin for DirectoryEntryPlus
impl UnwindSafe for DirectoryEntryPlus
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