pub struct CrossFileConfig {
pub min_function_lines: usize,
pub max_function_lines: usize,
pub min_file_occurrences: usize,
pub similarity_threshold: f64,
pub max_memory_mb: usize,
}Expand description
Configuration for cross-file analysis behavior
Fields§
§min_function_lines: usize§max_function_lines: usize§min_file_occurrences: usize§similarity_threshold: f64§max_memory_mb: usizeTrait Implementations§
Source§impl Clone for CrossFileConfig
impl Clone for CrossFileConfig
Source§fn clone(&self) -> CrossFileConfig
fn clone(&self) -> CrossFileConfig
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 CrossFileConfig
impl Debug for CrossFileConfig
Auto Trait Implementations§
impl Freeze for CrossFileConfig
impl RefUnwindSafe for CrossFileConfig
impl Send for CrossFileConfig
impl Sync for CrossFileConfig
impl Unpin for CrossFileConfig
impl UnsafeUnpin for CrossFileConfig
impl UnwindSafe for CrossFileConfig
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