pub struct MarginDustResponse {
pub details: Vec<MarginDustResponseDetailsItem>,
pub dribblet_percentage: String,
pub total_transfer_bnb: String,
pub total_transfer_btc: String,
}
Expand description
MarginDustResponse
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": {
"examples": [
"6.21"
],
"type": "string"
},
"asset": {
"examples": [
"BTC"
],
"type": "string"
},
"assetFullName": {
"examples": [
"ADA"
],
"type": "string"
},
"exchange": {
"examples": [
"0.00035546"
],
"type": "string"
},
"toBNB": {
"examples": [
"0.01777302"
],
"type": "string"
},
"toBNBOffExchange": {
"examples": [
"0.01741756"
],
"type": "string"
},
"toBTC": {
"examples": [
"0.00016848"
],
"type": "string"
}
}
}
},
"dribbletPercentage": {
"examples": [
"0.02"
],
"type": "string"
},
"totalTransferBNB": {
"examples": [
"0.01777302"
],
"type": "string"
},
"totalTransferBtc": {
"examples": [
"0.00016848"
],
"type": "string"
}
}
}
Fields§
§details: Vec<MarginDustResponseDetailsItem>
§dribblet_percentage: String
§total_transfer_bnb: String
§total_transfer_btc: String
Trait Implementations§
Source§impl Clone for MarginDustResponse
impl Clone for MarginDustResponse
Source§fn clone(&self) -> MarginDustResponse
fn clone(&self) -> MarginDustResponse
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 MarginDustResponse
impl Debug for MarginDustResponse
Source§impl<'de> Deserialize<'de> for MarginDustResponse
impl<'de> Deserialize<'de> for MarginDustResponse
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<&MarginDustResponse> for MarginDustResponse
impl From<&MarginDustResponse> for MarginDustResponse
Source§fn from(value: &MarginDustResponse) -> Self
fn from(value: &MarginDustResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginDustResponse
impl RefUnwindSafe for MarginDustResponse
impl Send for MarginDustResponse
impl Sync for MarginDustResponse
impl Unpin for MarginDustResponse
impl UnwindSafe for MarginDustResponse
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