pub struct AssetCustodyTransferHistoryResponseRowsItem {
pub amount: String,
pub asset: String,
pub client_tran_id: String,
pub time: i64,
pub transfer_type: String,
}
Expand description
AssetCustodyTransferHistoryResponseRowsItem
JSON schema
{
"type": "object",
"required": [
"amount",
"asset",
"clientTranId",
"time",
"transferType"
],
"properties": {
"amount": {
"examples": [
"1"
],
"type": "string"
},
"asset": {
"examples": [
"ETH"
],
"type": "string"
},
"clientTranId": {
"examples": [
"293915932290879488"
],
"type": "string"
},
"time": {
"examples": [
1695205406000
],
"type": "integer",
"format": "int64"
},
"transferType": {
"examples": [
"Undelegate"
],
"type": "string"
}
}
}
Fields§
§amount: String
§asset: String
§client_tran_id: String
§time: i64
§transfer_type: String
Trait Implementations§
Source§impl Clone for AssetCustodyTransferHistoryResponseRowsItem
impl Clone for AssetCustodyTransferHistoryResponseRowsItem
Source§fn clone(&self) -> AssetCustodyTransferHistoryResponseRowsItem
fn clone(&self) -> AssetCustodyTransferHistoryResponseRowsItem
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 AssetCustodyTransferHistoryResponseRowsItem
impl<'de> Deserialize<'de> for AssetCustodyTransferHistoryResponseRowsItem
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<&AssetCustodyTransferHistoryResponseRowsItem> for AssetCustodyTransferHistoryResponseRowsItem
impl From<&AssetCustodyTransferHistoryResponseRowsItem> for AssetCustodyTransferHistoryResponseRowsItem
Source§fn from(value: &AssetCustodyTransferHistoryResponseRowsItem) -> Self
fn from(value: &AssetCustodyTransferHistoryResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetCustodyTransferHistoryResponseRowsItem
impl RefUnwindSafe for AssetCustodyTransferHistoryResponseRowsItem
impl Send for AssetCustodyTransferHistoryResponseRowsItem
impl Sync for AssetCustodyTransferHistoryResponseRowsItem
impl Unpin for AssetCustodyTransferHistoryResponseRowsItem
impl UnwindSafe for AssetCustodyTransferHistoryResponseRowsItem
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