pub struct BlueGreenPredictionTestOptions {
pub max_score_delta: f32,
pub compare_regions: bool,
}Expand description
Data type for blue/green prediction test options.
Fields§
§max_score_delta: f32Maximum allowed absolute score delta.
compare_regions: boolWhether bounding boxes are compared.
Trait Implementations§
Source§impl Clone for BlueGreenPredictionTestOptions
impl Clone for BlueGreenPredictionTestOptions
Source§fn clone(&self) -> BlueGreenPredictionTestOptions
fn clone(&self) -> BlueGreenPredictionTestOptions
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 moreimpl Copy for BlueGreenPredictionTestOptions
Source§impl PartialEq for BlueGreenPredictionTestOptions
impl PartialEq for BlueGreenPredictionTestOptions
Source§fn eq(&self, other: &BlueGreenPredictionTestOptions) -> bool
fn eq(&self, other: &BlueGreenPredictionTestOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BlueGreenPredictionTestOptions
Auto Trait Implementations§
impl Freeze for BlueGreenPredictionTestOptions
impl RefUnwindSafe for BlueGreenPredictionTestOptions
impl Send for BlueGreenPredictionTestOptions
impl Sync for BlueGreenPredictionTestOptions
impl Unpin for BlueGreenPredictionTestOptions
impl UnsafeUnpin for BlueGreenPredictionTestOptions
impl UnwindSafe for BlueGreenPredictionTestOptions
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