[][src]Enum lobster::OrderEvent

pub enum OrderEvent {
    Unfilled,
    PartiallyFilled {
        id: u128,
        filled_qty: u64,
        fills: Vec<FillMetadata>,
    },
    Filled {
        id: u128,
        filled_qty: u64,
        fills: Vec<FillMetadata>,
    },
    Placed(u128),
    Canceled(u128),
}

Variants

Unfilled
PartiallyFilled

Fields of PartiallyFilled

id: u128filled_qty: u64fills: Vec<FillMetadata>
Filled

Fields of Filled

id: u128filled_qty: u64fills: Vec<FillMetadata>
Placed(u128)
Canceled(u128)

Trait Implementations

impl Debug for OrderEvent[src]

impl PartialEq<OrderEvent> for OrderEvent[src]

impl StructuralPartialEq for OrderEvent[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.