pub enum DryRunFormat {
Text,
Json,
}Expand description
Output format for a dry-run plan.
Variants§
Text
Human-readable, grouped per tier and step. Default.
Json
Pretty-printed JSON — suitable for piping into jq or for tooling.
The field names are part of zig’s public contract; see
docs/dry-run.md for the full schema.
Trait Implementations§
Source§impl Clone for DryRunFormat
impl Clone for DryRunFormat
Source§fn clone(&self) -> DryRunFormat
fn clone(&self) -> DryRunFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DryRunFormat
impl Debug for DryRunFormat
Source§impl Default for DryRunFormat
impl Default for DryRunFormat
Source§fn default() -> DryRunFormat
fn default() -> DryRunFormat
Returns the “default value” for a type. Read more
Source§impl PartialEq for DryRunFormat
impl PartialEq for DryRunFormat
impl Copy for DryRunFormat
impl Eq for DryRunFormat
impl StructuralPartialEq for DryRunFormat
Auto Trait Implementations§
impl Freeze for DryRunFormat
impl RefUnwindSafe for DryRunFormat
impl Send for DryRunFormat
impl Sync for DryRunFormat
impl Unpin for DryRunFormat
impl UnsafeUnpin for DryRunFormat
impl UnwindSafe for DryRunFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.