pub struct OverlayConfig {
pub lower: PathBuf,
pub upper: PathBuf,
pub work: PathBuf,
pub merged: PathBuf,
}Expand description
Overlay filesystem configuration
Fields§
§lower: PathBufLower layer (read-only base)
upper: PathBufUpper layer (read-write changes)
work: PathBufWork directory (required by overlayfs)
merged: PathBufMerged mount point
Implementations§
Source§impl OverlayConfig
impl OverlayConfig
Trait Implementations§
Source§impl Clone for OverlayConfig
impl Clone for OverlayConfig
Source§fn clone(&self) -> OverlayConfig
fn clone(&self) -> OverlayConfig
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 OverlayConfig
impl RefUnwindSafe for OverlayConfig
impl Send for OverlayConfig
impl Sync for OverlayConfig
impl Unpin for OverlayConfig
impl UnwindSafe for OverlayConfig
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