pub struct ThreadMaterializePlan {
pub steps: Vec<MaterializeStep>,
pub copy_policy: CheckoutCopyPolicy,
pub write_manifest: bool,
pub apply_shared_target: bool,
pub hydrate: bool,
pub virtualized_mount: bool,
}Expand description
Structured pure plan for the start materialization path.
Fields§
§steps: Vec<MaterializeStep>Ordered steps for the start transaction apply path.
copy_policy: CheckoutCopyPolicy§write_manifest: bool§hydrate: bool§virtualized_mount: boolTrait Implementations§
Source§impl Clone for ThreadMaterializePlan
impl Clone for ThreadMaterializePlan
Source§fn clone(&self) -> ThreadMaterializePlan
fn clone(&self) -> ThreadMaterializePlan
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 ThreadMaterializePlan
impl Debug for ThreadMaterializePlan
impl Eq for ThreadMaterializePlan
Source§impl PartialEq for ThreadMaterializePlan
impl PartialEq for ThreadMaterializePlan
impl StructuralPartialEq for ThreadMaterializePlan
Auto Trait Implementations§
impl Freeze for ThreadMaterializePlan
impl RefUnwindSafe for ThreadMaterializePlan
impl Send for ThreadMaterializePlan
impl Sync for ThreadMaterializePlan
impl Unpin for ThreadMaterializePlan
impl UnsafeUnpin for ThreadMaterializePlan
impl UnwindSafe for ThreadMaterializePlan
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