pub struct AccountCommissionResponseResult {
pub symbol: Option<String>,
pub standard_commission: Option<Box<AccountCommissionResponseResultStandardCommission>>,
pub special_commission: Option<Box<AccountCommissionResponseResultSpecialCommission>>,
pub tax_commission: Option<Box<AccountCommissionResponseResultTaxCommission>>,
pub discount: Option<Box<AccountCommissionResponseResultDiscount>>,
}Fields§
§symbol: Option<String>§standard_commission: Option<Box<AccountCommissionResponseResultStandardCommission>>§special_commission: Option<Box<AccountCommissionResponseResultSpecialCommission>>§tax_commission: Option<Box<AccountCommissionResponseResultTaxCommission>>§discount: Option<Box<AccountCommissionResponseResultDiscount>>Implementations§
Trait Implementations§
Source§impl Clone for AccountCommissionResponseResult
impl Clone for AccountCommissionResponseResult
Source§fn clone(&self) -> AccountCommissionResponseResult
fn clone(&self) -> AccountCommissionResponseResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AccountCommissionResponseResult
impl Default for AccountCommissionResponseResult
Source§fn default() -> AccountCommissionResponseResult
fn default() -> AccountCommissionResponseResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountCommissionResponseResult
impl<'de> Deserialize<'de> for AccountCommissionResponseResult
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 PartialEq for AccountCommissionResponseResult
impl PartialEq for AccountCommissionResponseResult
Source§fn eq(&self, other: &AccountCommissionResponseResult) -> bool
fn eq(&self, other: &AccountCommissionResponseResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AccountCommissionResponseResult
Auto Trait Implementations§
impl Freeze for AccountCommissionResponseResult
impl RefUnwindSafe for AccountCommissionResponseResult
impl Send for AccountCommissionResponseResult
impl Sync for AccountCommissionResponseResult
impl Unpin for AccountCommissionResponseResult
impl UnsafeUnpin for AccountCommissionResponseResult
impl UnwindSafe for AccountCommissionResponseResult
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