pub struct FundingHistory {
pub category: String,
pub list: Vec<FundingRecord>,
}Expand description
Funding rate history response.
Fields§
§category: StringCategory
list: Vec<FundingRecord>List of funding records
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<'de> Deserialize<'de> for FundingHistory
impl<'de> Deserialize<'de> for FundingHistory
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
Auto Trait Implementations§
impl Freeze for FundingHistory
impl RefUnwindSafe for FundingHistory
impl Send for FundingHistory
impl Sync for FundingHistory
impl Unpin for FundingHistory
impl UnsafeUnpin 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