pub struct FeeRateEntry {
pub symbol: Option<String>,
pub base_coin: Option<String>,
pub taker_fee_rate: Decimal,
pub maker_fee_rate: Decimal,
}Fields§
§symbol: Option<String>Symbol name. Spot/linear/inverse only.
base_coin: Option<String>Base coin. Option only.
taker_fee_rate: Decimal§maker_fee_rate: DecimalTrait Implementations§
Source§impl Debug for FeeRateEntry
impl Debug for FeeRateEntry
Source§impl<'de> Deserialize<'de> for FeeRateEntry
impl<'de> Deserialize<'de> for FeeRateEntry
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 FeeRateEntry
impl PartialEq for FeeRateEntry
Source§fn eq(&self, other: &FeeRateEntry) -> bool
fn eq(&self, other: &FeeRateEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FeeRateEntry
Auto Trait Implementations§
impl Freeze for FeeRateEntry
impl RefUnwindSafe for FeeRateEntry
impl Send for FeeRateEntry
impl Sync for FeeRateEntry
impl Unpin for FeeRateEntry
impl UnsafeUnpin for FeeRateEntry
impl UnwindSafe for FeeRateEntry
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