pub struct AccountCommissionParams {
pub symbol: String,
pub id: Option<String>,
}Expand description
Request parameters for the [account_commission] operation.
This struct holds all of the inputs you can pass when calling
account_commission.
Fields§
§symbol: StringThe symbol parameter.
This field is **required.
id: Option<String>Client-generated request identifier.
This field is **optional.
Implementations§
Source§impl AccountCommissionParams
impl AccountCommissionParams
Sourcepub fn builder(symbol: String) -> AccountCommissionParamsBuilder
pub fn builder(symbol: String) -> AccountCommissionParamsBuilder
Create a builder for [account_commission].
Required parameters:
symbol— String
Trait Implementations§
Source§impl Clone for AccountCommissionParams
impl Clone for AccountCommissionParams
Source§fn clone(&self) -> AccountCommissionParams
fn clone(&self) -> AccountCommissionParams
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 Debug for AccountCommissionParams
impl Debug for AccountCommissionParams
Source§impl<'de> Deserialize<'de> for AccountCommissionParams
impl<'de> Deserialize<'de> for AccountCommissionParams
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
Auto Trait Implementations§
impl Freeze for AccountCommissionParams
impl RefUnwindSafe for AccountCommissionParams
impl Send for AccountCommissionParams
impl Sync for AccountCommissionParams
impl Unpin for AccountCommissionParams
impl UnsafeUnpin for AccountCommissionParams
impl UnwindSafe for AccountCommissionParams
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