pub struct BookDelta {
pub symbol: String,
pub side: BookSide,
pub price: Decimal,
pub quantity: Decimal,
pub sequence: Option<u64>,
}Expand description
Incremental order book update.
Fields§
§symbol: String§side: BookSide§price: DecimalPrice level to update. quantity == 0 means remove.
quantity: Decimal§sequence: Option<u64>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BookDelta
impl RefUnwindSafe for BookDelta
impl Send for BookDelta
impl Sync for BookDelta
impl Unpin for BookDelta
impl UnsafeUnpin for BookDelta
impl UnwindSafe for BookDelta
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