pub struct AccountApiTradingStatusResponseDataIndicators {
pub btcusdt: Vec<AccountApiTradingStatusResponseDataIndicatorsBtcusdtItem>,
}
Expand description
The indicators updated every 30 seconds
JSON schema
{
"description": "The indicators updated every 30 seconds",
"type": "object",
"required": [
"BTCUSDT"
],
"properties": {
"BTCUSDT": {
"type": "array",
"items": {
"type": "object",
"required": [
"c",
"i",
"t",
"v"
],
"properties": {
"c": {
"description": "Count of all orders",
"examples": [
20
],
"type": "integer",
"format": "int64"
},
"i": {
"description": "Unfilled Ratio (UFR)",
"examples": [
"UFR"
],
"type": "string"
},
"t": {
"description": "Trigger UFR value",
"examples": [
0.99
],
"type": "number",
"format": "float"
},
"v": {
"description": "Current UFR value",
"examples": [
0.05
],
"type": "number",
"format": "float"
}
}
}
}
}
}
Fields§
§btcusdt: Vec<AccountApiTradingStatusResponseDataIndicatorsBtcusdtItem>
Trait Implementations§
Source§impl Clone for AccountApiTradingStatusResponseDataIndicators
impl Clone for AccountApiTradingStatusResponseDataIndicators
Source§fn clone(&self) -> AccountApiTradingStatusResponseDataIndicators
fn clone(&self) -> AccountApiTradingStatusResponseDataIndicators
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 AccountApiTradingStatusResponseDataIndicators
impl<'de> Deserialize<'de> for AccountApiTradingStatusResponseDataIndicators
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 From<&AccountApiTradingStatusResponseDataIndicators> for AccountApiTradingStatusResponseDataIndicators
impl From<&AccountApiTradingStatusResponseDataIndicators> for AccountApiTradingStatusResponseDataIndicators
Source§fn from(value: &AccountApiTradingStatusResponseDataIndicators) -> Self
fn from(value: &AccountApiTradingStatusResponseDataIndicators) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AccountApiTradingStatusResponseDataIndicators
impl RefUnwindSafe for AccountApiTradingStatusResponseDataIndicators
impl Send for AccountApiTradingStatusResponseDataIndicators
impl Sync for AccountApiTradingStatusResponseDataIndicators
impl Unpin for AccountApiTradingStatusResponseDataIndicators
impl UnwindSafe for AccountApiTradingStatusResponseDataIndicators
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