pub struct ListClearedOrdersParams {Show 15 fields
pub bet_status: BetStatus,
pub event_type_ids: Option<Vec<EventTypeId>>,
pub event_ids: Option<Vec<EventId>>,
pub market_ids: Option<Vec<MarketId>>,
pub runner_ids: Option<Vec<RunnerId>>,
pub bet_ids: Option<Vec<BetId>>,
pub customer_order_refs: Option<Vec<CustomerOrderRef>>,
pub customer_strategy_refs: Option<Vec<CustomerStrategyRef>>,
pub side: Option<BetfairSide>,
pub settled_date_range: Option<TimeRange>,
pub group_by: Option<GroupBy>,
pub include_item_description: Option<bool>,
pub locale: Option<String>,
pub from_record: Option<u32>,
pub record_count: Option<u32>,
}Expand description
Parameters for a listClearedOrders request.
Fields§
§bet_status: BetStatus§event_type_ids: Option<Vec<EventTypeId>>§event_ids: Option<Vec<EventId>>§market_ids: Option<Vec<MarketId>>§runner_ids: Option<Vec<RunnerId>>§bet_ids: Option<Vec<BetId>>§customer_order_refs: Option<Vec<CustomerOrderRef>>§customer_strategy_refs: Option<Vec<CustomerStrategyRef>>§side: Option<BetfairSide>§settled_date_range: Option<TimeRange>§group_by: Option<GroupBy>§include_item_description: Option<bool>§locale: Option<String>§from_record: Option<u32>§record_count: Option<u32>Trait Implementations§
Source§impl Clone for ListClearedOrdersParams
impl Clone for ListClearedOrdersParams
Source§fn clone(&self) -> ListClearedOrdersParams
fn clone(&self) -> ListClearedOrdersParams
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 ListClearedOrdersParams
impl Debug for ListClearedOrdersParams
Auto Trait Implementations§
impl Freeze for ListClearedOrdersParams
impl RefUnwindSafe for ListClearedOrdersParams
impl Send for ListClearedOrdersParams
impl Sync for ListClearedOrdersParams
impl Unpin for ListClearedOrdersParams
impl UnsafeUnpin for ListClearedOrdersParams
impl UnwindSafe for ListClearedOrdersParams
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