pub struct DirectoryRecord {
pub name: String,
pub inodes: Vec<Inode>,
pub attrs: AttrMap,
}Fields§
§name: StringThe name of the directory
inodes: Vec<Inode>List of inodes
attrs: AttrMapOptional attributes for the given paths, such as Windows or Unix ACLs, last accessed time, etc.
Implementations§
Trait Implementations§
Source§impl Clone for DirectoryRecord
impl Clone for DirectoryRecord
Source§fn clone(&self) -> DirectoryRecord
fn clone(&self) -> DirectoryRecord
Returns a copy 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 DirectoryRecord
impl RefUnwindSafe for DirectoryRecord
impl Send for DirectoryRecord
impl Sync for DirectoryRecord
impl Unpin for DirectoryRecord
impl UnwindSafe for DirectoryRecord
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