pub enum RepairOutputFormat {
Pretty,
Json(Option<String>),
}Expand description
Output format for the repair plan / report.
Variants§
Pretty
Human-readable summary to stdout.
Json(Option<String>)
Pretty-printed JSON to the given path (or stdout if None).
Auto Trait Implementations§
impl Freeze for RepairOutputFormat
impl RefUnwindSafe for RepairOutputFormat
impl Send for RepairOutputFormat
impl Sync for RepairOutputFormat
impl Unpin for RepairOutputFormat
impl UnsafeUnpin for RepairOutputFormat
impl UnwindSafe for RepairOutputFormat
Blanket Implementations§
impl<T> Allocation for T
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