pub struct VerifyOptions {
pub repo_root: PathBuf,
pub sample_ratio_percent: u32,
pub seed: String,
pub diff_lines: usize,
}Fields§
§repo_root: PathBuf§sample_ratio_percent: u32Sample ratio in percent. 1..=100; values are clamped at the boundary. Default 10 (matches ADR-0005).
seed: StringSeed for deterministic sampling. Reviewer can’t predict CI’s seed when it’s tied to PR + run id (see ADR-0005). Tests pin an explicit value.
diff_lines: usizeCap on diff lines emitted on mismatch.
Trait Implementations§
Source§impl Clone for VerifyOptions
impl Clone for VerifyOptions
Source§fn clone(&self) -> VerifyOptions
fn clone(&self) -> VerifyOptions
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 VerifyOptions
impl Debug for VerifyOptions
Auto Trait Implementations§
impl Freeze for VerifyOptions
impl RefUnwindSafe for VerifyOptions
impl Send for VerifyOptions
impl Sync for VerifyOptions
impl Unpin for VerifyOptions
impl UnsafeUnpin for VerifyOptions
impl UnwindSafe for VerifyOptions
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