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