pub struct ValidationThresholds {
pub max_failures: usize,
pub max_relative_error: f64,
}Expand description
Blocking thresholds for the validation pipeline.
Fields§
§max_failures: usizeMaximum number of allowed failures.
max_relative_error: f64Maximum allowed relative error.
Trait Implementations§
Source§impl Clone for ValidationThresholds
impl Clone for ValidationThresholds
Source§fn clone(&self) -> ValidationThresholds
fn clone(&self) -> ValidationThresholds
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 ValidationThresholds
impl Debug for ValidationThresholds
Source§impl Default for ValidationThresholds
impl Default for ValidationThresholds
Source§fn default() -> ValidationThresholds
fn default() -> ValidationThresholds
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ValidationThresholds
impl RefUnwindSafe for ValidationThresholds
impl Send for ValidationThresholds
impl Sync for ValidationThresholds
impl Unpin for ValidationThresholds
impl UnsafeUnpin for ValidationThresholds
impl UnwindSafe for ValidationThresholds
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