pub struct Entry<'p> {
pub path: Cow<'p, Path>,
pub uid: u32,
pub gid: u32,
pub mode: u32,
pub mtime: Mtime,
pub item: Item<'p>,
pub xattrs: Xattrs<'p>,
}Expand description
A composefs dumpfile entry
Fields§
§path: Cow<'p, Path>The filename
uid: u32uid
gid: u32gid
mode: u32mode (includes file type)
mtime: MtimeModification time
item: Item<'p>The specific file/directory data
xattrs: Xattrs<'p>Extended attributes
Implementations§
Trait Implementations§
impl<'p> Eq for Entry<'p>
impl<'p> StructuralPartialEq for Entry<'p>
Auto Trait Implementations§
impl<'p> Freeze for Entry<'p>
impl<'p> RefUnwindSafe for Entry<'p>
impl<'p> Send for Entry<'p>
impl<'p> Sync for Entry<'p>
impl<'p> Unpin for Entry<'p>
impl<'p> UnwindSafe for Entry<'p>
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