pub struct OutputConfig {
pub format: OutputFormat,
pub include_content: bool,
pub include_score_breakdown: bool,
pub include_repo_stats: bool,
pub sort_by_score: bool,
pub pretty_json: bool,
pub custom_fields: Vec<String>,
}
Expand description
Output format configuration
Fields§
§format: OutputFormat
Output format
include_content: bool
Whether to include file content in output
include_score_breakdown: bool
Whether to include detailed scores breakdown
include_repo_stats: bool
Whether to include repository statistics
sort_by_score: bool
Whether to sort results by score
pretty_json: bool
Pretty print JSON output
custom_fields: Vec<String>
Custom output fields to include
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
Source§impl Default for OutputConfig
impl Default for OutputConfig
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
Source§impl Hash for OutputConfig
impl Hash 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