pub struct PaginatedResponseUserFundingPaymentDataItem {
pub event_number: u64,
pub funding_applied: Decimal,
pub market_id: u16,
pub symbol: String,
pub time: i64,
pub tx_hash: String,
}Expand description
user funding payment history
JSON schema
{
"description": "user funding payment history",
"type": "object",
"required": [
"eventNumber",
"fundingApplied",
"marketId",
"symbol",
"time",
"txHash"
],
"properties": {
"eventNumber": {
"type": "integer",
"format": "uint64",
"minimum": 0.0
},
"fundingApplied": {
"type": "string",
"format": "decimal"
},
"marketId": {
"type": "integer",
"format": "uint16",
"minimum": 0.0
},
"symbol": {
"type": "string"
},
"time": {
"type": "integer",
"format": "int64"
},
"txHash": {
"type": "string"
}
}
}Fields§
§event_number: u64§funding_applied: Decimal§market_id: u16§symbol: String§time: i64§tx_hash: StringTrait Implementations§
Source§impl Clone for PaginatedResponseUserFundingPaymentDataItem
impl Clone for PaginatedResponseUserFundingPaymentDataItem
Source§fn clone(&self) -> PaginatedResponseUserFundingPaymentDataItem
fn clone(&self) -> PaginatedResponseUserFundingPaymentDataItem
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<'de> Deserialize<'de> for PaginatedResponseUserFundingPaymentDataItem
impl<'de> Deserialize<'de> for PaginatedResponseUserFundingPaymentDataItem
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 PaginatedResponseUserFundingPaymentDataItem
impl RefUnwindSafe for PaginatedResponseUserFundingPaymentDataItem
impl Send for PaginatedResponseUserFundingPaymentDataItem
impl Sync for PaginatedResponseUserFundingPaymentDataItem
impl Unpin for PaginatedResponseUserFundingPaymentDataItem
impl UnsafeUnpin for PaginatedResponseUserFundingPaymentDataItem
impl UnwindSafe for PaginatedResponseUserFundingPaymentDataItem
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