pub struct OutputConfig {
pub format: OutputFormatType,
pub file: Option<PathBuf>,
pub summary_only: bool,
pub sort_by: SortBy,
pub top_n: Option<usize>,
pub verbose: bool,
pub quiet: bool,
pub show_git_info: bool,
}Expand description
Output configuration.
Fields§
§format: OutputFormatTypeOutput format.
file: Option<PathBuf>Output file path.
summary_only: boolShow only summary.
sort_by: SortBySort order.
top_n: Option<usize>Limit results to top N.
verbose: boolShow verbose output.
quiet: boolQuiet mode (no output).
show_git_info: boolShow git information.
Trait Implementations§
Source§impl Clone for OutputConfig
impl Clone for OutputConfig
Source§fn clone(&self) -> OutputConfig
fn clone(&self) -> OutputConfig
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 OutputConfig
impl Debug for OutputConfig
Auto Trait Implementations§
impl Freeze for OutputConfig
impl RefUnwindSafe for OutputConfig
impl Send for OutputConfig
impl Sync for OutputConfig
impl Unpin for OutputConfig
impl UnwindSafe for OutputConfig
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