pub struct ProductBook {
pub pricebook: PriceBook,
pub last: Option<String>,
pub mid_market: Option<String>,
pub spread_bps: Option<String>,
pub spread_absolute: Option<String>,
}Fields§
§pricebook: PriceBook§last: Option<String>§mid_market: Option<String>§spread_bps: Option<String>§spread_absolute: Option<String>Trait Implementations§
Source§impl Clone for ProductBook
impl Clone for ProductBook
Source§fn clone(&self) -> ProductBook
fn clone(&self) -> ProductBook
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProductBook
impl Debug for ProductBook
Source§impl<'de> Deserialize<'de> for ProductBook
impl<'de> Deserialize<'de> for ProductBook
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 ProductBook
impl RefUnwindSafe for ProductBook
impl Send for ProductBook
impl Sync for ProductBook
impl Unpin for ProductBook
impl UnwindSafe for ProductBook
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