pub struct FdSolution {
pub npv: f64,
pub delta: f64,
pub gamma: f64,
pub theta: f64,
}Expand description
One solve returns the value and the grid Greeks.
Fields§
§npv: f64§delta: f64§gamma: f64§theta: f64Trait Implementations§
Source§impl Clone for FdSolution
impl Clone for FdSolution
Source§fn clone(&self) -> FdSolution
fn clone(&self) -> FdSolution
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 FdSolution
Auto Trait Implementations§
impl Freeze for FdSolution
impl RefUnwindSafe for FdSolution
impl Send for FdSolution
impl Sync for FdSolution
impl Unpin for FdSolution
impl UnsafeUnpin for FdSolution
impl UnwindSafe for FdSolution
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