pub struct SpotGetAccountV3Params {
pub timestamp: i64,
pub omit_zero_balances: Option<bool>,
pub recv_window: Option<i64>,
}Expand description
struct for passing parameters to the method spot_get_account_v3
Fields§
§timestamp: i64§omit_zero_balances: Option<bool>When set to true, emits only the non-zero balances of an account.
Default value: false
recv_window: Option<i64>The value cannot be greater than 60000
Trait Implementations§
Source§impl Clone for SpotGetAccountV3Params
impl Clone for SpotGetAccountV3Params
Source§fn clone(&self) -> SpotGetAccountV3Params
fn clone(&self) -> SpotGetAccountV3Params
Returns a copy 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 SpotGetAccountV3Params
impl Debug for SpotGetAccountV3Params
Source§impl Default for SpotGetAccountV3Params
impl Default for SpotGetAccountV3Params
Source§fn default() -> SpotGetAccountV3Params
fn default() -> SpotGetAccountV3Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SpotGetAccountV3Params
impl RefUnwindSafe for SpotGetAccountV3Params
impl Send for SpotGetAccountV3Params
impl Sync for SpotGetAccountV3Params
impl Unpin for SpotGetAccountV3Params
impl UnwindSafe for SpotGetAccountV3Params
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