pub struct AccountCommissionParams {
pub symbol: 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.
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 moreAuto 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