pub struct QueryPreventedMatchesParams {
pub symbol: String,
pub prevented_match_id: Option<i64>,
pub order_id: Option<i64>,
pub from_prevented_match_id: Option<i64>,
pub recv_window: Option<i64>,
pub is_isolated: Option<String>,
}Expand description
Request parameters for the [query_prevented_matches] operation.
This struct holds all of the inputs you can pass when calling
query_prevented_matches.
Fields§
§symbol: StringThe symbol parameter.
This field is **required.
prevented_match_id: Option<i64>The prevented_match_id parameter.
This field is **optional.
order_id: Option<i64>The order_id parameter.
This field is **optional.
from_prevented_match_id: Option<i64>The from_prevented_match_id parameter.
This field is **optional.
recv_window: Option<i64>No more than 60000
This field is **optional.
is_isolated: Option<String>For isolated margin or not, “TRUE”, “FALSE”, default “FALSE”
This field is **optional.
Implementations§
Source§impl QueryPreventedMatchesParams
impl QueryPreventedMatchesParams
Sourcepub fn builder(symbol: String) -> QueryPreventedMatchesParamsBuilder
pub fn builder(symbol: String) -> QueryPreventedMatchesParamsBuilder
Create a builder for [query_prevented_matches].
Required parameters:
symbol— String
Trait Implementations§
Source§impl Clone for QueryPreventedMatchesParams
impl Clone for QueryPreventedMatchesParams
Source§fn clone(&self) -> QueryPreventedMatchesParams
fn clone(&self) -> QueryPreventedMatchesParams
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 moreAuto Trait Implementations§
impl Freeze for QueryPreventedMatchesParams
impl RefUnwindSafe for QueryPreventedMatchesParams
impl Send for QueryPreventedMatchesParams
impl Sync for QueryPreventedMatchesParams
impl Unpin for QueryPreventedMatchesParams
impl UnsafeUnpin for QueryPreventedMatchesParams
impl UnwindSafe for QueryPreventedMatchesParams
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