pub enum CliOutputFormat {
Console,
Json,
Markdown,
}Expand description
CLI-compatible output format enum.
Variants§
Trait Implementations§
Source§impl Clone for CliOutputFormat
impl Clone for CliOutputFormat
Source§fn clone(&self) -> CliOutputFormat
fn clone(&self) -> CliOutputFormat
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 CliOutputFormat
impl Debug for CliOutputFormat
Source§impl From<CliOutputFormat> for OutputFormat
impl From<CliOutputFormat> for OutputFormat
Source§fn from(cli_format: CliOutputFormat) -> Self
fn from(cli_format: CliOutputFormat) -> Self
Converts to this type from the input type.
Source§impl ValueEnum for CliOutputFormat
impl ValueEnum for CliOutputFormat
impl Copy for CliOutputFormat
Auto Trait Implementations§
impl Freeze for CliOutputFormat
impl RefUnwindSafe for CliOutputFormat
impl Send for CliOutputFormat
impl Sync for CliOutputFormat
impl Unpin for CliOutputFormat
impl UnsafeUnpin for CliOutputFormat
impl UnwindSafe for CliOutputFormat
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