pub struct AccountInfo {Show 28 fields
pub login: i64,
pub trade_mode: i64,
pub leverage: i64,
pub limit_orders: i64,
pub margin_so_mode: i64,
pub trade_allowed: bool,
pub trade_expert: bool,
pub margin_mode: i64,
pub currency_digits: i64,
pub fifo_close: bool,
pub balance: f64,
pub credit: f64,
pub profit: f64,
pub equity: f64,
pub margin: f64,
pub free_margin: f64,
pub margin_level: f64,
pub margin_so_call: f64,
pub margin_so_so: f64,
pub margin_initial: f64,
pub margin_maintenance: f64,
pub assets: f64,
pub liabilities: f64,
pub commission_blocked: f64,
pub name: String,
pub server: String,
pub currency: String,
pub company: String,
}Fields§
§login: i64§trade_mode: i64§leverage: i64§limit_orders: i64§margin_so_mode: i64§trade_allowed: bool§trade_expert: bool§margin_mode: i64§currency_digits: i64§fifo_close: bool§balance: f64§credit: f64§profit: f64§equity: f64§margin: f64§free_margin: f64§margin_level: f64§margin_so_call: f64§margin_so_so: f64§margin_initial: f64§margin_maintenance: f64§assets: f64§liabilities: f64§commission_blocked: f64§name: String§server: String§currency: String§company: StringTrait Implementations§
Source§impl Clone for AccountInfo
impl Clone for AccountInfo
Source§fn clone(&self) -> AccountInfo
fn clone(&self) -> AccountInfo
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 AccountInfo
impl RefUnwindSafe for AccountInfo
impl Send for AccountInfo
impl Sync for AccountInfo
impl Unpin for AccountInfo
impl UnsafeUnpin for AccountInfo
impl UnwindSafe for AccountInfo
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