Struct binance_async::model::AccountInformation[][src]

pub struct AccountInformation {
    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 balances: Vec<Balance>,
}

Fields

Trait Implementations

impl Debug for AccountInformation
[src]

Formats the value using the given formatter. Read more

impl Clone for AccountInformation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations