pub struct GetFundingStateResponse {
pub current_funding_rate: Option<String>,
pub estimated_next_funding_rate: Option<String>,
pub funding_interval_seconds: Option<u32>,
pub last_funding_time: Option<String>,
pub next_funding_time: Option<String>,
pub trading_pair_id: Option<Uuid>,
pub updated_at: Option<String>,
}Expand description
GetFundingStateResponse
JSON schema
{
"type": "object",
"properties": {
"currentFundingRate": {
"type": [
"string",
"null"
]
},
"estimatedNextFundingRate": {
"type": [
"string",
"null"
]
},
"fundingIntervalSeconds": {
"type": [
"integer",
"null"
],
"format": "uint32"
},
"lastFundingTime": {
"type": [
"string",
"null"
]
},
"nextFundingTime": {
"type": [
"string",
"null"
]
},
"tradingPairId": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"updatedAt": {
"type": [
"string",
"null"
]
}
}
}Fields§
§current_funding_rate: Option<String>§estimated_next_funding_rate: Option<String>§funding_interval_seconds: Option<u32>§last_funding_time: Option<String>§next_funding_time: Option<String>§trading_pair_id: Option<Uuid>§updated_at: Option<String>Trait Implementations§
Source§impl Clone for GetFundingStateResponse
impl Clone for GetFundingStateResponse
Source§fn clone(&self) -> GetFundingStateResponse
fn clone(&self) -> GetFundingStateResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetFundingStateResponse
impl Debug for GetFundingStateResponse
Source§impl Default for GetFundingStateResponse
impl Default for GetFundingStateResponse
Source§impl<'de> Deserialize<'de> for GetFundingStateResponse
impl<'de> Deserialize<'de> for GetFundingStateResponse
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 GetFundingStateResponse
impl RefUnwindSafe for GetFundingStateResponse
impl Send for GetFundingStateResponse
impl Sync for GetFundingStateResponse
impl Unpin for GetFundingStateResponse
impl UnsafeUnpin for GetFundingStateResponse
impl UnwindSafe for GetFundingStateResponse
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