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