pub struct OverlayInfo {
pub rootfs_path: String,
pub upper_path: String,
pub work_path: String,
}Expand description
Overlay preparation result.
Fields§
§rootfs_path: StringPath to the merged overlay rootfs.
upper_path: StringPath to the upper (writable) directory.
work_path: StringPath to the work directory.
Trait Implementations§
Source§impl Clone for OverlayInfo
impl Clone for OverlayInfo
Source§fn clone(&self) -> OverlayInfo
fn clone(&self) -> OverlayInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OverlayInfo
impl Debug for OverlayInfo
Source§impl<'de> Deserialize<'de> for OverlayInfo
impl<'de> Deserialize<'de> for OverlayInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OverlayInfo
impl RefUnwindSafe for OverlayInfo
impl Send for OverlayInfo
impl Sync for OverlayInfo
impl Unpin for OverlayInfo
impl UnsafeUnpin for OverlayInfo
impl UnwindSafe for OverlayInfo
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