pub struct CheckThresholds {
pub max_exact: Option<usize>,
pub max_near: Option<usize>,
pub max_exact_percent: Option<f64>,
pub max_near_percent: Option<f64>,
}Expand description
Thresholds for the check subcommand.
Fields§
§max_exact: Option<usize>§max_near: Option<usize>§max_exact_percent: Option<f64>§max_near_percent: Option<f64>Trait Implementations§
Source§impl Clone for CheckThresholds
impl Clone for CheckThresholds
Source§fn clone(&self) -> CheckThresholds
fn clone(&self) -> CheckThresholds
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 CheckThresholds
impl Debug for CheckThresholds
Source§impl Default for CheckThresholds
impl Default for CheckThresholds
Source§fn default() -> CheckThresholds
fn default() -> CheckThresholds
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CheckThresholds
impl RefUnwindSafe for CheckThresholds
impl Send for CheckThresholds
impl Sync for CheckThresholds
impl Unpin for CheckThresholds
impl UnsafeUnpin for CheckThresholds
impl UnwindSafe for CheckThresholds
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