pub struct ListCurrentOrdersParams {
pub bet_ids: Option<Vec<BetId>>,
pub market_ids: Option<Vec<MarketId>>,
pub order_projection: Option<OrderProjection>,
pub customer_order_refs: Option<Vec<CustomerOrderRef>>,
pub customer_strategy_refs: Option<Vec<CustomerStrategyRef>>,
pub date_range: Option<TimeRange>,
pub order_by: Option<OrderBy>,
pub sort_dir: Option<SortDir>,
pub from_record: Option<u32>,
pub record_count: Option<u32>,
}Expand description
Parameters for a listCurrentOrders request.
Fields§
§bet_ids: Option<Vec<BetId>>§market_ids: Option<Vec<MarketId>>§order_projection: Option<OrderProjection>§customer_order_refs: Option<Vec<CustomerOrderRef>>§customer_strategy_refs: Option<Vec<CustomerStrategyRef>>§date_range: Option<TimeRange>§order_by: Option<OrderBy>§sort_dir: Option<SortDir>§from_record: Option<u32>§record_count: Option<u32>Trait Implementations§
Source§impl Clone for ListCurrentOrdersParams
impl Clone for ListCurrentOrdersParams
Source§fn clone(&self) -> ListCurrentOrdersParams
fn clone(&self) -> ListCurrentOrdersParams
Returns a duplicate of the value. Read more
1.0.0 · 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 ListCurrentOrdersParams
impl Debug for ListCurrentOrdersParams
Auto Trait Implementations§
impl Freeze for ListCurrentOrdersParams
impl RefUnwindSafe for ListCurrentOrdersParams
impl Send for ListCurrentOrdersParams
impl Sync for ListCurrentOrdersParams
impl Unpin for ListCurrentOrdersParams
impl UnsafeUnpin for ListCurrentOrdersParams
impl UnwindSafe for ListCurrentOrdersParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more