pub struct ClearedOrderSummary {Show 24 fields
pub eventTypeId: Option<EventTypeId>,
pub eventId: Option<EventId>,
pub marketId: Option<MarketId>,
pub selectionId: Option<SelectionId>,
pub handicap: Option<Handicap>,
pub betId: Option<BetId>,
pub placedDate: Option<DateTime<Utc>>,
pub persistenceType: Option<String>,
pub orderType: Option<String>,
pub side: Option<String>,
pub itemDescription: Option<ItemDescription>,
pub betOutcome: Option<String>,
pub priceRequested: Option<Price>,
pub settledDate: Option<DateTime<Utc>>,
pub lastMatchedDate: Option<DateTime<Utc>>,
pub betCount: Option<i32>,
pub commission: Option<Size>,
pub priceMatched: Option<Price>,
pub priceReduced: Option<bool>,
pub sizeSettled: Option<Size>,
pub profit: Option<Size>,
pub sizeCancelled: Option<Size>,
pub customerOrderRef: Option<String>,
pub customerStrategyRef: Option<String>,
}Expand description
Summary of a cleared order.
Fields§
§eventTypeId: Option<EventTypeId>§eventId: Option<EventId>§marketId: Option<MarketId>§selectionId: Option<SelectionId>§handicap: Option<Handicap>§betId: Option<BetId>§placedDate: Option<DateTime<Utc>>§persistenceType: Option<String>§orderType: Option<String>§side: Option<String>§itemDescription: Option<ItemDescription>§betOutcome: Option<String>§priceRequested: Option<Price>§settledDate: Option<DateTime<Utc>>§lastMatchedDate: Option<DateTime<Utc>>§betCount: Option<i32>§commission: Option<Size>§priceMatched: Option<Price>§priceReduced: Option<bool>§sizeSettled: Option<Size>§profit: Option<Size>§sizeCancelled: Option<Size>§customerOrderRef: Option<String>§customerStrategyRef: Option<String>Trait Implementations§
Source§impl Debug for ClearedOrderSummary
impl Debug for ClearedOrderSummary
Source§impl<'de> Deserialize<'de> for ClearedOrderSummary
impl<'de> Deserialize<'de> for ClearedOrderSummary
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 ClearedOrderSummary
impl RefUnwindSafe for ClearedOrderSummary
impl Send for ClearedOrderSummary
impl Sync for ClearedOrderSummary
impl Unpin for ClearedOrderSummary
impl UnsafeUnpin for ClearedOrderSummary
impl UnwindSafe for ClearedOrderSummary
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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