pub struct HestonFit {
pub params: HestonParams,
pub rmse: f64,
pub iterations: usize,
pub converged: bool,
}Expand description
Calibration outcome: fitted parameters plus fit diagnostics.
Fields§
§params: HestonParams§rmse: f64Root-mean-square price error over the quotes.
iterations: usize§converged: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for HestonFit
impl RefUnwindSafe for HestonFit
impl Send for HestonFit
impl Sync for HestonFit
impl Unpin for HestonFit
impl UnsafeUnpin for HestonFit
impl UnwindSafe for HestonFit
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