pub struct VolLadder {
pub symbol: String,
pub base_mtm: f64,
pub points: Vec<VolLadderPoint>,
}Expand description
A vol ladder over one book: the vega profile across parallel shifts
of the implied surface — the non-local view of vega/volga, as
spot_ladder is for delta/gamma.
Fields§
§symbol: String§base_mtm: f64Book MtM under the unshifted snapshot.
points: Vec<VolLadderPoint>Trait Implementations§
Auto Trait Implementations§
impl Freeze for VolLadder
impl RefUnwindSafe for VolLadder
impl Send for VolLadder
impl Sync for VolLadder
impl Unpin for VolLadder
impl UnsafeUnpin for VolLadder
impl UnwindSafe for VolLadder
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