[][src]Enum botfair::generated_types::OrderBy

pub enum OrderBy {
    BY_BET,
    BY_MARKET,
    BY_PLACE_TIME,
    BY_MATCH_TIME,
    BY_VOID_TIME,
    BY_SETTLED_TIME,
}

Variants

BY_BET

@Deprecated Use BY_PLACE_TIME instead. Order by placed time, then bet id.

BY_MARKET

Order by market id, then placed time, then bet id.

BY_PLACE_TIME

Order by placed time, then bet id. This is an alias of to be deprecated BY_BET.

BY_MATCH_TIME

Order by time of last matched fragment (if any), then placed time, then bet id. Filters out orders which have no matched date

BY_VOID_TIME

Order by time of last voided fragment (if any), then by last match time, then placed time, then bet id. Filters out orders which have not been voided.

BY_SETTLED_TIME

Order by time of last settled fragment (if any), then by last match time, then placed time, then bet id. Filters out orders which have not been settled.

Trait Implementations

impl Debug for OrderBy[src]

impl Serialize for OrderBy[src]

impl<'de> Deserialize<'de> for OrderBy[src]

Auto Trait Implementations

impl Send for OrderBy

impl Sync for OrderBy

impl Unpin for OrderBy

impl UnwindSafe for OrderBy

impl RefUnwindSafe for OrderBy

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err