pub struct GetFutureAccountTransactionHistoryResponseRowsItem {
pub amount: String,
pub asset: String,
pub status: String,
pub timestamp: i64,
pub tran_id: i64,
pub type_: String,
}
Expand description
GetFutureAccountTransactionHistoryResponseRowsItem
JSON schema
{
"type": "object",
"required": [
"amount",
"asset",
"status",
"timestamp",
"tranId",
"type"
],
"properties": {
"amount": {
"examples": [
"40.84624400"
],
"type": "string"
},
"asset": {
"examples": [
"USDT"
],
"type": "string"
},
"status": {
"description": "one of PENDING (pending to execution), CONFIRMED (successfully transfered), FAILED (execution failed, nothing happened to your account);",
"examples": [
"CONFIRMED"
],
"type": "string"
},
"timestamp": {
"examples": [
1555056425000
],
"type": "integer",
"format": "int64"
},
"tranId": {
"examples": [
100000001
],
"type": "integer",
"format": "int64"
},
"type": {
"examples": [
"1"
],
"type": "string"
}
}
}
Fields§
§amount: String
§asset: String
§status: String
one of PENDING (pending to execution), CONFIRMED (successfully transfered), FAILED (execution failed, nothing happened to your account);
timestamp: i64
§tran_id: i64
§type_: String
Trait Implementations§
Source§impl Clone for GetFutureAccountTransactionHistoryResponseRowsItem
impl Clone for GetFutureAccountTransactionHistoryResponseRowsItem
Source§fn clone(&self) -> GetFutureAccountTransactionHistoryResponseRowsItem
fn clone(&self) -> GetFutureAccountTransactionHistoryResponseRowsItem
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 GetFutureAccountTransactionHistoryResponseRowsItem
impl<'de> Deserialize<'de> for GetFutureAccountTransactionHistoryResponseRowsItem
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<&GetFutureAccountTransactionHistoryResponseRowsItem> for GetFutureAccountTransactionHistoryResponseRowsItem
impl From<&GetFutureAccountTransactionHistoryResponseRowsItem> for GetFutureAccountTransactionHistoryResponseRowsItem
Source§fn from(value: &GetFutureAccountTransactionHistoryResponseRowsItem) -> Self
fn from(value: &GetFutureAccountTransactionHistoryResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetFutureAccountTransactionHistoryResponseRowsItem
impl RefUnwindSafe for GetFutureAccountTransactionHistoryResponseRowsItem
impl Send for GetFutureAccountTransactionHistoryResponseRowsItem
impl Sync for GetFutureAccountTransactionHistoryResponseRowsItem
impl Unpin for GetFutureAccountTransactionHistoryResponseRowsItem
impl UnwindSafe for GetFutureAccountTransactionHistoryResponseRowsItem
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