pub struct AccountStatusParams {
pub id: Option<String>,
pub omit_zero_balances: Option<bool>,
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [account_status] operation.
This struct holds all of the inputs you can pass when calling
account_status.
Fields§
§id: Option<String>Unique WebSocket request ID.
This field is **optional.
omit_zero_balances: Option<bool>When set to true, emits only the non-zero balances of an account.
Default value: false
This field is **optional.
recv_window: Option<Decimal>The value cannot be greater than 60000.
Supports up to three decimal places of precision (e.g., 6000.346) so that microseconds may be specified.
This field is **optional.
Implementations§
Source§impl AccountStatusParams
impl AccountStatusParams
Sourcepub fn builder() -> AccountStatusParamsBuilder
pub fn builder() -> AccountStatusParamsBuilder
Create a builder for [account_status].
Trait Implementations§
Source§impl Clone for AccountStatusParams
impl Clone for AccountStatusParams
Source§fn clone(&self) -> AccountStatusParams
fn clone(&self) -> AccountStatusParams
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 moreSource§impl Debug for AccountStatusParams
impl Debug for AccountStatusParams
Source§impl Default for AccountStatusParams
impl Default for AccountStatusParams
Source§fn default() -> AccountStatusParams
fn default() -> AccountStatusParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AccountStatusParams
impl RefUnwindSafe for AccountStatusParams
impl Send for AccountStatusParams
impl Sync for AccountStatusParams
impl Unpin for AccountStatusParams
impl UnsafeUnpin for AccountStatusParams
impl UnwindSafe for AccountStatusParams
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