pub struct MarginCapitalFlowResponseItem {
pub amount: String,
pub asset: String,
pub id: i64,
pub symbol: String,
pub timestamp: i64,
pub tran_id: i64,
pub type_: String,
}
Expand description
MarginCapitalFlowResponseItem
JSON schema
{
"type": "object",
"required": [
"amount",
"asset",
"id",
"symbol",
"timestamp",
"tranId",
"type"
],
"properties": {
"amount": {
"examples": [
"101"
],
"type": "string"
},
"asset": {
"examples": [
"USDT"
],
"type": "string"
},
"id": {
"examples": [
123456
],
"type": "integer",
"format": "int64"
},
"symbol": {
"examples": [
"BTCUSDT"
],
"type": "string"
},
"timestamp": {
"examples": [
1691116657000
],
"type": "integer",
"format": "int64"
},
"tranId": {
"examples": [
123123
],
"type": "integer",
"format": "int64"
},
"type": {
"examples": [
"BORROW"
],
"type": "string"
}
}
}
Fields§
§amount: String
§asset: String
§id: i64
§symbol: String
§timestamp: i64
§tran_id: i64
§type_: String
Trait Implementations§
Source§impl Clone for MarginCapitalFlowResponseItem
impl Clone for MarginCapitalFlowResponseItem
Source§fn clone(&self) -> MarginCapitalFlowResponseItem
fn clone(&self) -> MarginCapitalFlowResponseItem
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 MarginCapitalFlowResponseItem
impl<'de> Deserialize<'de> for MarginCapitalFlowResponseItem
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<&MarginCapitalFlowResponseItem> for MarginCapitalFlowResponseItem
impl From<&MarginCapitalFlowResponseItem> for MarginCapitalFlowResponseItem
Source§fn from(value: &MarginCapitalFlowResponseItem) -> Self
fn from(value: &MarginCapitalFlowResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginCapitalFlowResponseItem
impl RefUnwindSafe for MarginCapitalFlowResponseItem
impl Send for MarginCapitalFlowResponseItem
impl Sync for MarginCapitalFlowResponseItem
impl Unpin for MarginCapitalFlowResponseItem
impl UnwindSafe for MarginCapitalFlowResponseItem
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