pub struct AssetCustodyTransferHistoryResponse {
pub rows: Vec<AssetCustodyTransferHistoryResponseRowsItem>,
pub total: i64,
}
Expand description
AssetCustodyTransferHistoryResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"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"
}
}
}
},
"total": {
"examples": [
3316
],
"type": "integer"
}
}
}
Fields§
§rows: Vec<AssetCustodyTransferHistoryResponseRowsItem>
§total: i64
Trait Implementations§
Source§impl Clone for AssetCustodyTransferHistoryResponse
impl Clone for AssetCustodyTransferHistoryResponse
Source§fn clone(&self) -> AssetCustodyTransferHistoryResponse
fn clone(&self) -> AssetCustodyTransferHistoryResponse
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 AssetCustodyTransferHistoryResponse
impl<'de> Deserialize<'de> for AssetCustodyTransferHistoryResponse
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<&AssetCustodyTransferHistoryResponse> for AssetCustodyTransferHistoryResponse
impl From<&AssetCustodyTransferHistoryResponse> for AssetCustodyTransferHistoryResponse
Source§fn from(value: &AssetCustodyTransferHistoryResponse) -> Self
fn from(value: &AssetCustodyTransferHistoryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetCustodyTransferHistoryResponse
impl RefUnwindSafe for AssetCustodyTransferHistoryResponse
impl Send for AssetCustodyTransferHistoryResponse
impl Sync for AssetCustodyTransferHistoryResponse
impl Unpin for AssetCustodyTransferHistoryResponse
impl UnwindSafe for AssetCustodyTransferHistoryResponse
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