pub struct AccountInformation {Show 17 fields
pub maker_commission: f64,
pub taker_commission: f64,
pub buyer_commission: f64,
pub seller_commission: f64,
pub commission_rates: CommissionRates,
pub can_trade: bool,
pub can_withdraw: bool,
pub can_deposit: bool,
pub brokered: bool,
pub require_self_trade_prevention: bool,
pub prevent_sor: bool,
pub update_time: Timestamp,
pub account_type: AccountType,
pub balances: Vec<Balance>,
pub permissions: Option<Vec<String>>,
pub permission_sets: Option<Vec<Vec<String>>>,
pub uid: i64,
}Fields§
§maker_commission: f64§taker_commission: f64§buyer_commission: f64§seller_commission: f64§commission_rates: CommissionRates§can_trade: bool§can_withdraw: bool§can_deposit: bool§brokered: bool§require_self_trade_prevention: bool§prevent_sor: bool§update_time: Timestamp§account_type: AccountType§balances: Vec<Balance>§permissions: Option<Vec<String>>§permission_sets: Option<Vec<Vec<String>>>§uid: i64Trait Implementations§
Source§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
Source§impl PartialEq for AccountInformation
impl PartialEq for AccountInformation
impl StructuralPartialEq for AccountInformation
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