pub struct SmartImportConfig {
pub source_language: SourceLanguage,
pub min_confidence: f32,
pub allow_warnings: bool,
}Expand description
Smart import filter configuration
Fields§
§source_language: SourceLanguageSource language of patterns (for context-aware filtering)
min_confidence: f32Minimum confidence threshold for patterns
allow_warnings: boolAllow patterns with warnings
Trait Implementations§
Source§impl Clone for SmartImportConfig
impl Clone for SmartImportConfig
Source§fn clone(&self) -> SmartImportConfig
fn clone(&self) -> SmartImportConfig
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 SmartImportConfig
impl Debug for SmartImportConfig
Auto Trait Implementations§
impl Freeze for SmartImportConfig
impl RefUnwindSafe for SmartImportConfig
impl Send for SmartImportConfig
impl Sync for SmartImportConfig
impl Unpin for SmartImportConfig
impl UnsafeUnpin for SmartImportConfig
impl UnwindSafe for SmartImportConfig
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