pub struct AccountInfoQuery {
pub include_interest_rate: Option<bool>,
pub include_short_pos_margin: Option<bool>,
}Expand description
Optional query parameters for Client::get_account_info.
Fields§
§include_interest_rate: Option<bool>true if interest_rate should be included in the response.
Defaults to true server-side.
include_short_pos_margin: Option<bool>true if short_position_margin should be included in the
response. Defaults to true server-side.
Trait Implementations§
Source§impl Clone for AccountInfoQuery
impl Clone for AccountInfoQuery
Source§fn clone(&self) -> AccountInfoQuery
fn clone(&self) -> AccountInfoQuery
Returns a duplicate of the value. Read more
1.0.0 · 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 AccountInfoQuery
impl Debug for AccountInfoQuery
Source§impl Default for AccountInfoQuery
impl Default for AccountInfoQuery
Source§fn default() -> AccountInfoQuery
fn default() -> AccountInfoQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AccountInfoQuery
impl RefUnwindSafe for AccountInfoQuery
impl Send for AccountInfoQuery
impl Sync for AccountInfoQuery
impl Unpin for AccountInfoQuery
impl UnsafeUnpin for AccountInfoQuery
impl UnwindSafe for AccountInfoQuery
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