pub struct PriceIncrement {
pub low_edge: f64,
pub increment: f64,
}Expand description
Price ladder entry describing the minimum tick between price bands.
Fields§
§low_edge: f64Lower inclusive edge where the increment applies.
increment: f64Minimum tick size within this price band.
Trait Implementations§
Source§impl Debug for PriceIncrement
impl Debug for PriceIncrement
Source§impl Default for PriceIncrement
impl Default for PriceIncrement
Source§fn default() -> PriceIncrement
fn default() -> PriceIncrement
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PriceIncrement
impl RefUnwindSafe for PriceIncrement
impl Send for PriceIncrement
impl Sync for PriceIncrement
impl Unpin for PriceIncrement
impl UnwindSafe for PriceIncrement
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