pub struct BatesDoubleExpFit {
pub params: BatesDoubleExpParams,
pub rmse: f64,
pub iterations: usize,
pub converged: bool,
}Expand description
Calibration outcome for the double-exponential-jump Bates model.
Fields§
§params: BatesDoubleExpParams§rmse: f64§iterations: usize§converged: boolTrait Implementations§
Source§impl Clone for BatesDoubleExpFit
impl Clone for BatesDoubleExpFit
Source§fn clone(&self) -> BatesDoubleExpFit
fn clone(&self) -> BatesDoubleExpFit
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 moreAuto Trait Implementations§
impl Freeze for BatesDoubleExpFit
impl RefUnwindSafe for BatesDoubleExpFit
impl Send for BatesDoubleExpFit
impl Sync for BatesDoubleExpFit
impl Unpin for BatesDoubleExpFit
impl UnsafeUnpin for BatesDoubleExpFit
impl UnwindSafe for BatesDoubleExpFit
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