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