pub struct ResolverConfig {
pub auto_accept_threshold: Confidence,
pub max_vsa_candidates: usize,
pub search_config: SearchConfig,
pub language: Option<Language>,
}Expand description
Configuration for the resolver pipeline.
Fields§
§auto_accept_threshold: ConfidenceMinimum confidence to auto-accept a resolution.
max_vsa_candidates: usizeMaximum VSA candidates to enumerate.
search_config: SearchConfigSearch-based resolver configuration.
language: Option<Language>Programming language (for structured merge). None = text-only mode.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ResolverConfig
impl RefUnwindSafe for ResolverConfig
impl Send for ResolverConfig
impl Sync for ResolverConfig
impl Unpin for ResolverConfig
impl UnwindSafe for ResolverConfig
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