pub enum AnalyticsFormat {
Text,
Table,
Json,
Yaml,
Markdown,
MarkdownTable,
Csv,
}Variants§
Text
Plain text (default). Fixed-width columns, no borders.
Table
DuckDB-style box-drawing table. Falls through to text when
stdout isn’t a TTY.
Json
Pretty JSON.
Yaml
YAML.
Markdown
Markdown bullet list per section.
MarkdownTable
Markdown table per section.
Csv
CSV — one row per metric.
Trait Implementations§
Source§impl Clone for AnalyticsFormat
impl Clone for AnalyticsFormat
Source§fn clone(&self) -> AnalyticsFormat
fn clone(&self) -> AnalyticsFormat
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 AnalyticsFormat
Source§impl ValueEnum for AnalyticsFormat
impl ValueEnum for AnalyticsFormat
Auto Trait Implementations§
impl Freeze for AnalyticsFormat
impl RefUnwindSafe for AnalyticsFormat
impl Send for AnalyticsFormat
impl Sync for AnalyticsFormat
impl Unpin for AnalyticsFormat
impl UnsafeUnpin for AnalyticsFormat
impl UnwindSafe for AnalyticsFormat
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