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