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