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