pub struct AssetDustBtcResponse {
pub details: Vec<AssetDustBtcResponseDetailsItem>,
pub dribblet_percentage: String,
pub total_transfer_bnb: String,
pub total_transfer_btc: String,
}
Expand description
AssetDustBtcResponse
JSON schema
{
"type": "object",
"required": [
"details",
"dribbletPercentage",
"totalTransferBNB",
"totalTransferBtc"
],
"properties": {
"details": {
"type": "array",
"items": {
"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"
}
}
}
},
"dribbletPercentage": {
"description": "Commission fee",
"examples": [
"0.02"
],
"type": "string"
},
"totalTransferBNB": {
"examples": [
"0.01777302"
],
"type": "string"
},
"totalTransferBtc": {
"examples": [
"0.00016848"
],
"type": "string"
}
}
}
Fields§
§details: Vec<AssetDustBtcResponseDetailsItem>
§dribblet_percentage: String
Commission fee
total_transfer_bnb: String
§total_transfer_btc: String
Trait Implementations§
Source§impl Clone for AssetDustBtcResponse
impl Clone for AssetDustBtcResponse
Source§fn clone(&self) -> AssetDustBtcResponse
fn clone(&self) -> AssetDustBtcResponse
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 Debug for AssetDustBtcResponse
impl Debug for AssetDustBtcResponse
Source§impl<'de> Deserialize<'de> for AssetDustBtcResponse
impl<'de> Deserialize<'de> for AssetDustBtcResponse
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<&AssetDustBtcResponse> for AssetDustBtcResponse
impl From<&AssetDustBtcResponse> for AssetDustBtcResponse
Source§fn from(value: &AssetDustBtcResponse) -> Self
fn from(value: &AssetDustBtcResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssetDustBtcResponse
impl RefUnwindSafe for AssetDustBtcResponse
impl Send for AssetDustBtcResponse
impl Sync for AssetDustBtcResponse
impl Unpin for AssetDustBtcResponse
impl UnwindSafe for AssetDustBtcResponse
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