pub struct AccountInformation {Show 13 fields
pub maker_commission: f32,
pub taker_commission: f32,
pub buyer_commission: f32,
pub seller_commission: f32,
pub can_trade: bool,
pub can_withdraw: bool,
pub can_deposit: bool,
pub brokered: bool,
pub require_self_trade_prevention: bool,
pub update_time: u64,
pub account_type: AccountType,
pub permissions: Vec<Permission>,
pub balances: Vec<Balance>,
}
Fields§
§maker_commission: f32
§taker_commission: f32
§buyer_commission: f32
§seller_commission: f32
§can_trade: bool
§can_withdraw: bool
§can_deposit: bool
§brokered: bool
§require_self_trade_prevention: bool
§update_time: u64
§account_type: AccountType
§permissions: Vec<Permission>
§balances: Vec<Balance>
Trait Implementations§
Source§impl Clone for AccountInformation
impl Clone for AccountInformation
Source§fn clone(&self) -> AccountInformation
fn clone(&self) -> AccountInformation
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AccountInformation
impl Debug for AccountInformation
Source§impl<'de> Deserialize<'de> for AccountInformation
impl<'de> Deserialize<'de> for AccountInformation
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 AccountInformation
impl RefUnwindSafe for AccountInformation
impl Send for AccountInformation
impl Sync for AccountInformation
impl Unpin for AccountInformation
impl UnwindSafe for AccountInformation
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