pub struct AnalysisConfig {
pub max_file_size_kb: u64,
pub exclude_patterns: Vec<String>,
pub include_patterns: Vec<String>,
pub detect_components: bool,
pub parallelism: usize,
pub languages: HashMap<String, LanguageConfig>,
}Expand description
Analysis configuration for code parsing.
Fields§
§max_file_size_kb: u64Maximum file size to analyze (in KB)
exclude_patterns: Vec<String>File patterns to exclude (glob patterns)
include_patterns: Vec<String>Additional file patterns to include
detect_components: boolEnable component detection (manifests)
parallelism: usizeParallelism level (0 = auto-detect)
languages: HashMap<String, LanguageConfig>Language-specific settings
Trait Implementations§
Source§impl Clone for AnalysisConfig
impl Clone for AnalysisConfig
Source§fn clone(&self) -> AnalysisConfig
fn clone(&self) -> AnalysisConfig
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 AnalysisConfig
impl Debug for AnalysisConfig
Source§impl Default for AnalysisConfig
impl Default for AnalysisConfig
Source§impl<'de> Deserialize<'de> for AnalysisConfigwhere
AnalysisConfig: Default,
impl<'de> Deserialize<'de> for AnalysisConfigwhere
AnalysisConfig: Default,
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 AnalysisConfig
impl RefUnwindSafe for AnalysisConfig
impl Send for AnalysisConfig
impl Sync for AnalysisConfig
impl Unpin for AnalysisConfig
impl UnwindSafe for AnalysisConfig
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