pub enum RepairReportSource {
File(String),
Auto,
}Expand description
Source of the reconcile report used to derive the repair plan.
Variants§
File(String)
Read a reconcile report JSON from disk.
Auto
Run reconcile in-process against the latest chunk run.
Auto Trait Implementations§
impl Freeze for RepairReportSource
impl RefUnwindSafe for RepairReportSource
impl Send for RepairReportSource
impl Sync for RepairReportSource
impl Unpin for RepairReportSource
impl UnsafeUnpin for RepairReportSource
impl UnwindSafe for RepairReportSource
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