pub struct MarginDustResponseDetailsItem {
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
MarginDustResponseDetailsItem
JSON schema
{
"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"
}
}
}
Fields§
§amount_free: String
§asset: String
§asset_full_name: String
§exchange: String
§to_bnb: String
§to_bnb_off_exchange: String
§to_btc: String
Trait Implementations§
Source§impl Clone for MarginDustResponseDetailsItem
impl Clone for MarginDustResponseDetailsItem
Source§fn clone(&self) -> MarginDustResponseDetailsItem
fn clone(&self) -> MarginDustResponseDetailsItem
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 MarginDustResponseDetailsItem
impl<'de> Deserialize<'de> for MarginDustResponseDetailsItem
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<&MarginDustResponseDetailsItem> for MarginDustResponseDetailsItem
impl From<&MarginDustResponseDetailsItem> for MarginDustResponseDetailsItem
Source§fn from(value: &MarginDustResponseDetailsItem) -> Self
fn from(value: &MarginDustResponseDetailsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginDustResponseDetailsItem
impl RefUnwindSafe for MarginDustResponseDetailsItem
impl Send for MarginDustResponseDetailsItem
impl Sync for MarginDustResponseDetailsItem
impl Unpin for MarginDustResponseDetailsItem
impl UnwindSafe for MarginDustResponseDetailsItem
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