pub struct PlanDirectory {
pub root: Utf8PathBuf,
pub plan: Utf8PathBuf,
pub blobs: Utf8PathBuf,
pub journal: Utf8PathBuf,
}Expand description
Where one plan’s own directory sits.
Fields§
§root: Utf8PathBufThe directory itself.
plan: Utf8PathBufThe executable plan.
blobs: Utf8PathBufEvery byte the plan will write, by digest.
journal: Utf8PathBufThe journal an unfinished apply leaves.
Trait Implementations§
Source§impl Clone for PlanDirectory
impl Clone for PlanDirectory
Source§fn clone(&self) -> PlanDirectory
fn clone(&self) -> PlanDirectory
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 moreAuto Trait Implementations§
impl Freeze for PlanDirectory
impl RefUnwindSafe for PlanDirectory
impl Send for PlanDirectory
impl Sync for PlanDirectory
impl Unpin for PlanDirectory
impl UnsafeUnpin for PlanDirectory
impl UnwindSafe for PlanDirectory
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