pub struct AssetTransferResponse {
pub rows: Vec<AssetTransferResponseRowsItem>,
pub total: i32,
}
Expand description
AssetTransferResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"amount",
"asset",
"status",
"timestamp",
"tranId",
"type"
],
"properties": {
"amount": {
"examples": [
"1"
],
"type": "string"
},
"asset": {
"examples": [
"USDT"
],
"type": "string"
},
"status": {
"examples": [
"CONFIRMED"
],
"type": "string"
},
"timestamp": {
"examples": [
1544433328000
],
"type": "integer",
"format": "int64"
},
"tranId": {
"examples": [
11415955596
],
"type": "integer",
"format": "int64"
},
"type": {
"examples": [
"MAIN_UMFUTUR"
],
"type": "string"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<AssetTransferResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for AssetTransferResponse
impl Clone for AssetTransferResponse
Source§fn clone(&self) -> AssetTransferResponse
fn clone(&self) -> AssetTransferResponse
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 Debug for AssetTransferResponse
impl Debug for AssetTransferResponse
Source§impl<'de> Deserialize<'de> for AssetTransferResponse
impl<'de> Deserialize<'de> for AssetTransferResponse
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<&AssetTransferResponse> for AssetTransferResponse
impl From<&AssetTransferResponse> for AssetTransferResponse
Source§fn from(value: &AssetTransferResponse) -> Self
fn from(value: &AssetTransferResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetTransferResponse
impl RefUnwindSafe for AssetTransferResponse
impl Send for AssetTransferResponse
impl Sync for AssetTransferResponse
impl Unpin for AssetTransferResponse
impl UnwindSafe for AssetTransferResponse
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