pub struct OutputConfig {
pub format: Option<String>,
pub directory: Option<PathBuf>,
pub formats: Vec<String>,
pub include_unclassified: bool,
pub include_merges: bool,
pub include_files: bool,
}Expand description
Output / reporting configuration.
Fields§
§format: Option<String>Single output format identifier (csv, json, markdown).
Retained for backward compatibility; prefer OutputConfig::formats.
directory: Option<PathBuf>Destination directory for reports.
Accepts both directory (Python-compat) and output_path (legacy
Rust) keys in the YAML.
formats: Vec<String>Output format list (e.g. ["csv", "markdown"]).
include_unclassified: boolInclude unclassified commits in output.
include_merges: boolInclude merge commits in output.
include_files: boolInclude file-level details in output.
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 (const: unstable) · 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
Source§impl Default for OutputConfig
impl Default for OutputConfig
Source§fn default() -> OutputConfig
fn default() -> OutputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputConfig
impl<'de> Deserialize<'de> for OutputConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OutputConfig
impl RefUnwindSafe for OutputConfig
impl Send for OutputConfig
impl Sync for OutputConfig
impl Unpin for OutputConfig
impl UnsafeUnpin 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