pub enum ArtifactRepairMode {
Audit,
Apply,
}Expand description
Selects whether an orphan-repair pass only reports or also applies repairs.
Variants§
Audit
Inspect storage without mutating it.
Apply
Apply only repairs that can be proven safe from ownership records.
Trait Implementations§
Source§impl Clone for ArtifactRepairMode
impl Clone for ArtifactRepairMode
Source§fn clone(&self) -> ArtifactRepairMode
fn clone(&self) -> ArtifactRepairMode
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 moreimpl Copy for ArtifactRepairMode
Source§impl Debug for ArtifactRepairMode
impl Debug for ArtifactRepairMode
impl Eq for ArtifactRepairMode
Source§impl PartialEq for ArtifactRepairMode
impl PartialEq for ArtifactRepairMode
impl StructuralPartialEq for ArtifactRepairMode
Auto Trait Implementations§
impl Freeze for ArtifactRepairMode
impl RefUnwindSafe for ArtifactRepairMode
impl Send for ArtifactRepairMode
impl Sync for ArtifactRepairMode
impl Unpin for ArtifactRepairMode
impl UnsafeUnpin for ArtifactRepairMode
impl UnwindSafe for ArtifactRepairMode
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