pub struct LotSizeFilter {
pub min_notional_value: Decimal,
pub max_order_qty: Decimal,
pub max_mkt_order_qty: Decimal,
pub min_order_qty: Decimal,
pub qty_step: Decimal,
pub post_only_max_order_qty: Decimal,
}Fields§
§min_notional_value: Decimal§max_order_qty: Decimal§max_mkt_order_qty: Decimal§min_order_qty: Decimal§qty_step: Decimal§post_only_max_order_qty: DecimalTrait Implementations§
Source§impl Debug for LotSizeFilter
impl Debug for LotSizeFilter
Source§impl<'de> Deserialize<'de> for LotSizeFilter
impl<'de> Deserialize<'de> for LotSizeFilter
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
Source§impl PartialEq for LotSizeFilter
impl PartialEq for LotSizeFilter
Source§fn eq(&self, other: &LotSizeFilter) -> bool
fn eq(&self, other: &LotSizeFilter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LotSizeFilter
Auto Trait Implementations§
impl Freeze for LotSizeFilter
impl RefUnwindSafe for LotSizeFilter
impl Send for LotSizeFilter
impl Sync for LotSizeFilter
impl Unpin for LotSizeFilter
impl UnsafeUnpin for LotSizeFilter
impl UnwindSafe for LotSizeFilter
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