pub struct QueryUserWalletBalanceParams {
pub quote_asset: Option<String>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_user_wallet_balance] operation.
This struct holds all of the inputs you can pass when calling
query_user_wallet_balance.
Fields§
§quote_asset: Option<String>USDT, ETH, USDC, BNB, etc. default BTC
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl QueryUserWalletBalanceParams
impl QueryUserWalletBalanceParams
Sourcepub fn builder() -> QueryUserWalletBalanceParamsBuilder
pub fn builder() -> QueryUserWalletBalanceParamsBuilder
Create a builder for [query_user_wallet_balance].
Trait Implementations§
Source§impl Clone for QueryUserWalletBalanceParams
impl Clone for QueryUserWalletBalanceParams
Source§fn clone(&self) -> QueryUserWalletBalanceParams
fn clone(&self) -> QueryUserWalletBalanceParams
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 QueryUserWalletBalanceParams
impl Debug for QueryUserWalletBalanceParams
Source§impl Default for QueryUserWalletBalanceParams
impl Default for QueryUserWalletBalanceParams
Source§fn default() -> QueryUserWalletBalanceParams
fn default() -> QueryUserWalletBalanceParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for QueryUserWalletBalanceParams
impl RefUnwindSafe for QueryUserWalletBalanceParams
impl Send for QueryUserWalletBalanceParams
impl Sync for QueryUserWalletBalanceParams
impl Unpin for QueryUserWalletBalanceParams
impl UnsafeUnpin for QueryUserWalletBalanceParams
impl UnwindSafe for QueryUserWalletBalanceParams
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