pub struct AccountCommissionRates {
pub buyer: String,
pub maker: String,
pub seller: String,
pub taker: String,
}
Expand description
AccountCommissionRates
JSON schema
{
"type": "object",
"required": [
"buyer",
"maker",
"seller",
"taker"
],
"properties": {
"buyer": {
"examples": [
"0.00000000"
],
"type": "string"
},
"maker": {
"examples": [
"0.00150000"
],
"type": "string"
},
"seller": {
"examples": [
"0.00000000"
],
"type": "string"
},
"taker": {
"examples": [
"0.00150000"
],
"type": "string"
}
}
}
Fields§
§buyer: String
§maker: String
§seller: String
§taker: String
Trait Implementations§
Source§impl Clone for AccountCommissionRates
impl Clone for AccountCommissionRates
Source§fn clone(&self) -> AccountCommissionRates
fn clone(&self) -> AccountCommissionRates
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 AccountCommissionRates
impl Debug for AccountCommissionRates
Source§impl<'de> Deserialize<'de> for AccountCommissionRates
impl<'de> Deserialize<'de> for AccountCommissionRates
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<&AccountCommissionRates> for AccountCommissionRates
impl From<&AccountCommissionRates> for AccountCommissionRates
Source§fn from(value: &AccountCommissionRates) -> Self
fn from(value: &AccountCommissionRates) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AccountCommissionRates
impl RefUnwindSafe for AccountCommissionRates
impl Send for AccountCommissionRates
impl Sync for AccountCommissionRates
impl Unpin for AccountCommissionRates
impl UnwindSafe for AccountCommissionRates
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