pub struct AccountCommissionResponse {
pub id: Option<String>,
pub status: Option<i64>,
pub result: Option<Box<AccountCommissionResponseResult>>,
pub rate_limits: Option<Vec<RateLimits>>,
}Fields§
§id: Option<String>§status: Option<i64>§result: Option<Box<AccountCommissionResponseResult>>§rate_limits: Option<Vec<RateLimits>>Implementations§
Source§impl AccountCommissionResponse
impl AccountCommissionResponse
pub fn new() -> AccountCommissionResponse
Trait Implementations§
Source§impl Clone for AccountCommissionResponse
impl Clone for AccountCommissionResponse
Source§fn clone(&self) -> AccountCommissionResponse
fn clone(&self) -> AccountCommissionResponse
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 AccountCommissionResponse
impl Debug for AccountCommissionResponse
Source§impl Default for AccountCommissionResponse
impl Default for AccountCommissionResponse
Source§fn default() -> AccountCommissionResponse
fn default() -> AccountCommissionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountCommissionResponse
impl<'de> Deserialize<'de> for AccountCommissionResponse
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 AccountCommissionResponse
impl PartialEq for AccountCommissionResponse
Source§fn eq(&self, other: &AccountCommissionResponse) -> bool
fn eq(&self, other: &AccountCommissionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AccountCommissionResponse
Auto Trait Implementations§
impl Freeze for AccountCommissionResponse
impl RefUnwindSafe for AccountCommissionResponse
impl Send for AccountCommissionResponse
impl Sync for AccountCommissionResponse
impl Unpin for AccountCommissionResponse
impl UnsafeUnpin for AccountCommissionResponse
impl UnwindSafe for AccountCommissionResponse
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