pub struct AssetDustBtcResponseDetailsItem {
pub amount_free: String,
pub asset: String,
pub asset_full_name: String,
pub exchange: String,
pub to_bnb: String,
pub to_bnb_off_exchange: String,
pub to_btc: String,
}
Expand description
AssetDustBtcResponseDetailsItem
JSON schema
{
"type": "object",
"required": [
"amountFree",
"asset",
"assetFullName",
"exchange",
"toBNB",
"toBNBOffExchange",
"toBTC"
],
"properties": {
"amountFree": {
"description": "Convertible amount",
"examples": [
"6.21"
],
"type": "string"
},
"asset": {
"examples": [
"ADA"
],
"type": "string"
},
"assetFullName": {
"examples": [
"ADA"
],
"type": "string"
},
"exchange": {
"description": "Commission fee",
"examples": [
"0.00035546"
],
"type": "string"
},
"toBNB": {
"description": "BNB amount(Not deducted commission fee",
"examples": [
"0.01777302"
],
"type": "string"
},
"toBNBOffExchange": {
"description": "BNB amount(Deducted commission fee",
"examples": [
"0.01741756"
],
"type": "string"
},
"toBTC": {
"description": "BTC amount",
"examples": [
"0.00016848"
],
"type": "string"
}
}
}
Fields§
§amount_free: String
Convertible amount
asset: String
§asset_full_name: String
§exchange: String
Commission fee
to_bnb: String
BNB amount(Not deducted commission fee
to_bnb_off_exchange: String
BNB amount(Deducted commission fee
to_btc: String
BTC amount
Trait Implementations§
Source§impl Clone for AssetDustBtcResponseDetailsItem
impl Clone for AssetDustBtcResponseDetailsItem
Source§fn clone(&self) -> AssetDustBtcResponseDetailsItem
fn clone(&self) -> AssetDustBtcResponseDetailsItem
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 AssetDustBtcResponseDetailsItem
impl<'de> Deserialize<'de> for AssetDustBtcResponseDetailsItem
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<&AssetDustBtcResponseDetailsItem> for AssetDustBtcResponseDetailsItem
impl From<&AssetDustBtcResponseDetailsItem> for AssetDustBtcResponseDetailsItem
Source§fn from(value: &AssetDustBtcResponseDetailsItem) -> Self
fn from(value: &AssetDustBtcResponseDetailsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetDustBtcResponseDetailsItem
impl RefUnwindSafe for AssetDustBtcResponseDetailsItem
impl Send for AssetDustBtcResponseDetailsItem
impl Sync for AssetDustBtcResponseDetailsItem
impl Unpin for AssetDustBtcResponseDetailsItem
impl UnwindSafe for AssetDustBtcResponseDetailsItem
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