pub struct OverlayEntry {
pub path: String,
pub kind: OverlayEntryKind,
pub content: Vec<u8>,
pub mode: u32,
}Expand description
A single entry in an overlay layer.
Fields§
§path: StringFull path relative to the layer root.
kind: OverlayEntryKindEntry kind.
content: Vec<u8>File content (empty for directories/whiteouts).
mode: u32File permissions (Unix mode).
Trait Implementations§
Source§impl Clone for OverlayEntry
impl Clone for OverlayEntry
Source§fn clone(&self) -> OverlayEntry
fn clone(&self) -> OverlayEntry
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OverlayEntry
impl Debug for OverlayEntry
Source§impl PartialEq for OverlayEntry
impl PartialEq for OverlayEntry
impl Eq for OverlayEntry
impl StructuralPartialEq for OverlayEntry
Auto Trait Implementations§
impl Freeze for OverlayEntry
impl RefUnwindSafe for OverlayEntry
impl Send for OverlayEntry
impl Sync for OverlayEntry
impl Unpin for OverlayEntry
impl UnwindSafe for OverlayEntry
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)