pub enum DirectOrderbookChange {
Set {
price: Price,
quantity: Quantity,
},
Delta {
price: Price,
quantity: Quantity,
},
}Expand description
Represents single change on an orderbook.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DirectOrderbookChange
impl RefUnwindSafe for DirectOrderbookChange
impl Send for DirectOrderbookChange
impl Sync for DirectOrderbookChange
impl Unpin for DirectOrderbookChange
impl UnwindSafe for DirectOrderbookChange
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