pub struct QuoteLeg {
pub category: String,
pub symbol: String,
pub price: String,
pub qty: Option<String>,
}Expand description
Quote leg used in create quote request.
Fields§
§category: String§symbol: String§price: String§qty: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for QuoteLeg
impl<'de> Deserialize<'de> for QuoteLeg
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 QuoteLeg
impl RefUnwindSafe for QuoteLeg
impl Send for QuoteLeg
impl Sync for QuoteLeg
impl Unpin for QuoteLeg
impl UnsafeUnpin for QuoteLeg
impl UnwindSafe for QuoteLeg
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