pub struct QueryIsolatedMarginFeeDataParams {
pub vip_level: Option<i64>,
pub symbol: Option<String>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_isolated_margin_fee_data] operation.
This struct holds all of the inputs you can pass when calling
query_isolated_margin_fee_data.
Fields§
§vip_level: Option<i64>The vip_level parameter.
This field is **optional.
symbol: Option<String>The symbol parameter.
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl QueryIsolatedMarginFeeDataParams
impl QueryIsolatedMarginFeeDataParams
Sourcepub fn builder() -> QueryIsolatedMarginFeeDataParamsBuilder
pub fn builder() -> QueryIsolatedMarginFeeDataParamsBuilder
Create a builder for [query_isolated_margin_fee_data].
Trait Implementations§
Source§impl Clone for QueryIsolatedMarginFeeDataParams
impl Clone for QueryIsolatedMarginFeeDataParams
Source§fn clone(&self) -> QueryIsolatedMarginFeeDataParams
fn clone(&self) -> QueryIsolatedMarginFeeDataParams
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 QueryIsolatedMarginFeeDataParams
impl Default for QueryIsolatedMarginFeeDataParams
Source§fn default() -> QueryIsolatedMarginFeeDataParams
fn default() -> QueryIsolatedMarginFeeDataParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryIsolatedMarginFeeDataParams
impl<'de> Deserialize<'de> for QueryIsolatedMarginFeeDataParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QueryIsolatedMarginFeeDataParams
impl RefUnwindSafe for QueryIsolatedMarginFeeDataParams
impl Send for QueryIsolatedMarginFeeDataParams
impl Sync for QueryIsolatedMarginFeeDataParams
impl Unpin for QueryIsolatedMarginFeeDataParams
impl UnsafeUnpin for QueryIsolatedMarginFeeDataParams
impl UnwindSafe for QueryIsolatedMarginFeeDataParams
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