#[non_exhaustive]pub enum OutputFormat {
Human,
Json,
JsonFlat,
JsonlItems,
Tsv,
Csv,
Markdown,
}Expand description
Output format selected by --format=STYLE.
Wire form is kebab-case so json-flat and jsonl-items round-trip
through serde exactly as the CLI accepts them. Defaults to
OutputFormat::Human per §8.1 (sticky regardless of TTY).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Human
Tree-rendered, ASCII-bar, width-aware (§8.3).
Json
Nested envelope per §7.
JsonFlat
Flat envelope per §7.1 (wire form: json-flat).
JsonlItems
One JSON item per line, no envelope (wire form: jsonl-items).
Tsv
Tab-separated cluster summary.
Csv
RFC-4180 comma-separated cluster summary.
Markdown
Markdown — headings per cluster, fenced item blocks.
Trait Implementations§
Source§impl Clone for OutputFormat
impl Clone for OutputFormat
Source§fn clone(&self) -> OutputFormat
fn clone(&self) -> OutputFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OutputFormat
Source§impl Debug for OutputFormat
impl Debug for OutputFormat
Source§impl Default for OutputFormat
impl Default for OutputFormat
Source§fn default() -> OutputFormat
fn default() -> OutputFormat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputFormat
impl<'de> Deserialize<'de> for OutputFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for OutputFormat
Source§impl Hash for OutputFormat
impl Hash for OutputFormat
Source§impl PartialEq for OutputFormat
impl PartialEq for OutputFormat
Source§impl Serialize for OutputFormat
impl Serialize for OutputFormat
impl StructuralPartialEq for OutputFormat
Auto Trait Implementations§
impl Freeze for OutputFormat
impl RefUnwindSafe for OutputFormat
impl Send for OutputFormat
impl Sync for OutputFormat
impl Unpin for OutputFormat
impl UnsafeUnpin for OutputFormat
impl UnwindSafe for OutputFormat
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