pub struct CalibratedOverlay {
pub overlay: GenerationOverlay,
pub achieved_rate: f64,
pub iterations: usize,
pub converged: bool,
}Expand description
The result of a successful calibration run.
Fields§
§overlay: GenerationOverlayThe overlay whose anomaly probabilities have been tuned.
achieved_rate: f64The mean anomaly rate actually achieved with this overlay.
iterations: usizeHow many calibration iterations were executed.
converged: boolWhether the algorithm converged within tolerance.
Trait Implementations§
Source§impl Clone for CalibratedOverlay
impl Clone for CalibratedOverlay
Source§fn clone(&self) -> CalibratedOverlay
fn clone(&self) -> CalibratedOverlay
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 CalibratedOverlay
impl Debug for CalibratedOverlay
Auto Trait Implementations§
impl Freeze for CalibratedOverlay
impl RefUnwindSafe for CalibratedOverlay
impl Send for CalibratedOverlay
impl Sync for CalibratedOverlay
impl Unpin for CalibratedOverlay
impl UnsafeUnpin for CalibratedOverlay
impl UnwindSafe for CalibratedOverlay
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