pub struct TickRule {
pub start_tick_price_range: f64,
pub tick_increment: f64,
}Expand description
Price increment rule
Fields§
§start_tick_price_range: f64Above this price, the tick increment applies (Tag 1206)
tick_increment: f64Valid price increment for prices above the start range (Tag 1208)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for TickRule
impl<'de> Deserialize<'de> for TickRule
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 TickRule
impl RefUnwindSafe for TickRule
impl Send for TickRule
impl Sync for TickRule
impl Unpin for TickRule
impl UnwindSafe for TickRule
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