pub enum OutputFormatKind {
Table,
JSON,
CSV,
YAML,
}
Expand description
Represent the different type of available formats
Variants§
Table
Render the output as table
JSON
Print the output in JSON format
CSV
Print the output in CSV format
YAML
Print the output in YAML format
Trait Implementations§
Source§impl Debug for OutputFormatKind
impl Debug for OutputFormatKind
Source§impl PartialEq for OutputFormatKind
impl PartialEq for OutputFormatKind
impl StructuralPartialEq for OutputFormatKind
Auto Trait Implementations§
impl Freeze for OutputFormatKind
impl RefUnwindSafe for OutputFormatKind
impl Send for OutputFormatKind
impl Sync for OutputFormatKind
impl Unpin for OutputFormatKind
impl UnwindSafe for OutputFormatKind
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