pub struct ChainPerRoot {
pub option_root: String,
pub multiplier: Option<u32>,
pub chain_per_strike_price: Vec<ChainPerStrike>,
}Expand description
Option contracts for a single root symbol within an expiry.
Fields§
§option_root: StringOption root symbol (usually matches the underlying ticker).
multiplier: Option<u32>Contract multiplier (typically 100 for equity options).
chain_per_strike_price: Vec<ChainPerStrike>Strike-level call/put symbol ID pairs.
Trait Implementations§
Source§impl Debug for ChainPerRoot
impl Debug for ChainPerRoot
Source§impl<'de> Deserialize<'de> for ChainPerRoot
impl<'de> Deserialize<'de> for ChainPerRoot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChainPerRoot
impl RefUnwindSafe for ChainPerRoot
impl Send for ChainPerRoot
impl Sync for ChainPerRoot
impl Unpin for ChainPerRoot
impl UnsafeUnpin for ChainPerRoot
impl UnwindSafe for ChainPerRoot
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