pub struct RepoConfig {
pub model: Option<String>,
pub skip_llm_threshold: f64,
pub abort_threshold: f64,
pub shadow: bool,
}Expand description
Repository configuration merged over safe defaults.
Fields§
§model: Option<String>§skip_llm_threshold: f64§abort_threshold: f64§shadow: boolDecide and report, but never change the exit code.
Trait Implementations§
Source§impl Clone for RepoConfig
impl Clone for RepoConfig
Source§impl Debug for RepoConfig
impl Debug for RepoConfig
Source§impl Default for RepoConfig
impl Default for RepoConfig
Source§impl PartialEq for RepoConfig
impl PartialEq for RepoConfig
impl StructuralPartialEq for RepoConfig
Auto Trait Implementations§
impl Freeze for RepoConfig
impl RefUnwindSafe for RepoConfig
impl Send for RepoConfig
impl Sync for RepoConfig
impl Unpin for RepoConfig
impl UnsafeUnpin for RepoConfig
impl UnwindSafe for RepoConfig
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