pub enum Match {
FullPartial {
existing: FullFill,
incoming: PartialFill,
},
PartialFull {
existing: PartialFill,
incoming: FullFill,
},
FullFull {
existing: FullFill,
incoming: FullFill,
},
}Expand description
Represents a match between an existing order and an incoming order.
§Variants
FullPartial: Existing order fully filled, incoming order partially filledPartialFull: Existing order partially filled, incoming order fully filledFullFull: Both orders fully filled
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Match
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnsafeUnpin for Match
impl UnwindSafe for Match
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