pub struct OutputOpts {
pub format: OutputFormat,
pub output_path: Option<String>,
}Expand description
Output formatting options.
Fields§
§format: OutputFormatOutput format selected by --format (json, csv, table).
output_path: Option<String>Optional file path for output (--output). If None, output goes
to stdout.
Trait Implementations§
Source§impl Debug for OutputOpts
impl Debug for OutputOpts
Auto Trait Implementations§
impl Freeze for OutputOpts
impl RefUnwindSafe for OutputOpts
impl Send for OutputOpts
impl Sync for OutputOpts
impl Unpin for OutputOpts
impl UnwindSafe for OutputOpts
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