pub struct Resolved {
pub fs: DynFs,
pub spec: PathSpec,
pub source: DynSource,
pub source_spec: PathSpec,
}Expand description
One resolved layer stack: the mounted filesystem, its locator, and the byte source it was mounted from (plus that source’s pre-filesystem locator, the base a snapshot layer is pushed onto).
Fields§
§fs: DynFsThe mounted read-only filesystem.
spec: PathSpecThe full locator, topped by the fs: layer.
source: DynSourceThe byte source the filesystem was mounted from.
source_spec: PathSpecThat source’s pre-filesystem locator (the base a snapshot layer sits on).
Auto Trait Implementations§
impl !RefUnwindSafe for Resolved
impl !UnwindSafe for Resolved
impl Freeze for Resolved
impl Send for Resolved
impl Sync for Resolved
impl Unpin for Resolved
impl UnsafeUnpin for Resolved
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