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