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