pub struct QueryCurrentMarginOrderCountUsageParams {
pub is_isolated: Option<String>,
pub symbol: Option<String>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_current_margin_order_count_usage] operation.
This struct holds all of the inputs you can pass when calling
query_current_margin_order_count_usage.
Fields§
§is_isolated: Option<String>For isolated margin or not, “TRUE”, “FALSE”, default “FALSE”
This field is **optional.
symbol: Option<String>isolated margin pair
This field is **optional.
recv_window: Option<i64>No more than 60000
This field is **optional.
Implementations§
Source§impl QueryCurrentMarginOrderCountUsageParams
impl QueryCurrentMarginOrderCountUsageParams
Sourcepub fn builder() -> QueryCurrentMarginOrderCountUsageParamsBuilder
pub fn builder() -> QueryCurrentMarginOrderCountUsageParamsBuilder
Create a builder for [query_current_margin_order_count_usage].
Trait Implementations§
Source§impl Clone for QueryCurrentMarginOrderCountUsageParams
impl Clone for QueryCurrentMarginOrderCountUsageParams
Source§fn clone(&self) -> QueryCurrentMarginOrderCountUsageParams
fn clone(&self) -> QueryCurrentMarginOrderCountUsageParams
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 Default for QueryCurrentMarginOrderCountUsageParams
impl Default for QueryCurrentMarginOrderCountUsageParams
Source§fn default() -> QueryCurrentMarginOrderCountUsageParams
fn default() -> QueryCurrentMarginOrderCountUsageParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for QueryCurrentMarginOrderCountUsageParams
impl RefUnwindSafe for QueryCurrentMarginOrderCountUsageParams
impl Send for QueryCurrentMarginOrderCountUsageParams
impl Sync for QueryCurrentMarginOrderCountUsageParams
impl Unpin for QueryCurrentMarginOrderCountUsageParams
impl UnsafeUnpin for QueryCurrentMarginOrderCountUsageParams
impl UnwindSafe for QueryCurrentMarginOrderCountUsageParams
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