pub struct AssetTransferResponseRowsItem {
pub amount: String,
pub asset: String,
pub status: String,
pub timestamp: i64,
pub tran_id: i64,
pub type_: String,
}
Expand description
AssetTransferResponseRowsItem
JSON schema
{
"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"
}
}
}
Fields§
§amount: String
§asset: String
§status: String
§timestamp: i64
§tran_id: i64
§type_: String
Trait Implementations§
Source§impl Clone for AssetTransferResponseRowsItem
impl Clone for AssetTransferResponseRowsItem
Source§fn clone(&self) -> AssetTransferResponseRowsItem
fn clone(&self) -> AssetTransferResponseRowsItem
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 AssetTransferResponseRowsItem
impl<'de> Deserialize<'de> for AssetTransferResponseRowsItem
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<&AssetTransferResponseRowsItem> for AssetTransferResponseRowsItem
impl From<&AssetTransferResponseRowsItem> for AssetTransferResponseRowsItem
Source§fn from(value: &AssetTransferResponseRowsItem) -> Self
fn from(value: &AssetTransferResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetTransferResponseRowsItem
impl RefUnwindSafe for AssetTransferResponseRowsItem
impl Send for AssetTransferResponseRowsItem
impl Sync for AssetTransferResponseRowsItem
impl Unpin for AssetTransferResponseRowsItem
impl UnwindSafe for AssetTransferResponseRowsItem
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