pub struct FundingHistory {
pub info: Value,
pub id: Option<String>,
pub symbol: String,
pub amount: Option<f64>,
pub code: Option<String>,
pub timestamp: Option<i64>,
pub datetime: Option<String>,
}Expand description
Funding fee history record.
Contains historical funding fee payment information.
Fields§
§info: ValueRaw exchange response data.
id: Option<String>Income ID.
symbol: StringTrading pair symbol.
amount: Option<f64>Funding fee amount.
code: Option<String>Currency code.
timestamp: Option<i64>Timestamp.
datetime: Option<String>Datetime string in ISO 8601 format.
Trait Implementations§
Source§impl Clone for FundingHistory
impl Clone for FundingHistory
Source§fn clone(&self) -> FundingHistory
fn clone(&self) -> FundingHistory
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FundingHistory
impl Debug for FundingHistory
Source§impl Default for FundingHistory
impl Default for FundingHistory
Source§fn default() -> FundingHistory
fn default() -> FundingHistory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FundingHistory
impl<'de> Deserialize<'de> for FundingHistory
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FundingHistory, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FundingHistory, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for FundingHistory
impl Serialize for FundingHistory
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for FundingHistory
impl RefUnwindSafe for FundingHistory
impl Send for FundingHistory
impl Sync for FundingHistory
impl Unpin for FundingHistory
impl UnwindSafe for FundingHistory
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