pub struct SubAccountFuturesInternalTransferResponseTransfersItem {
pub asset: String,
pub from: String,
pub qty: String,
pub time: i64,
pub to: String,
pub tran_id: i64,
}
Expand description
SubAccountFuturesInternalTransferResponseTransfersItem
JSON schema
{
"type": "object",
"required": [
"asset",
"from",
"qty",
"time",
"to",
"tranId"
],
"properties": {
"asset": {
"examples": [
"BTC"
],
"type": "string"
},
"from": {
"examples": [
"aaa@test.com"
],
"type": "string"
},
"qty": {
"examples": [
"1"
],
"type": "string"
},
"time": {
"examples": [
1544433328000
],
"type": "integer",
"format": "int64"
},
"to": {
"examples": [
"bbb@test.com"
],
"type": "string"
},
"tranId": {
"examples": [
11897001102
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§asset: String
§from: String
§qty: String
§time: i64
§to: String
§tran_id: i64
Trait Implementations§
Source§impl Clone for SubAccountFuturesInternalTransferResponseTransfersItem
impl Clone for SubAccountFuturesInternalTransferResponseTransfersItem
Source§fn clone(&self) -> SubAccountFuturesInternalTransferResponseTransfersItem
fn clone(&self) -> SubAccountFuturesInternalTransferResponseTransfersItem
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 SubAccountFuturesInternalTransferResponseTransfersItem
impl<'de> Deserialize<'de> for SubAccountFuturesInternalTransferResponseTransfersItem
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<&SubAccountFuturesInternalTransferResponseTransfersItem> for SubAccountFuturesInternalTransferResponseTransfersItem
impl From<&SubAccountFuturesInternalTransferResponseTransfersItem> for SubAccountFuturesInternalTransferResponseTransfersItem
Source§fn from(value: &SubAccountFuturesInternalTransferResponseTransfersItem) -> Self
fn from(value: &SubAccountFuturesInternalTransferResponseTransfersItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubAccountFuturesInternalTransferResponseTransfersItem
impl RefUnwindSafe for SubAccountFuturesInternalTransferResponseTransfersItem
impl Send for SubAccountFuturesInternalTransferResponseTransfersItem
impl Sync for SubAccountFuturesInternalTransferResponseTransfersItem
impl Unpin for SubAccountFuturesInternalTransferResponseTransfersItem
impl UnwindSafe for SubAccountFuturesInternalTransferResponseTransfersItem
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