pub struct SubscribeOrderbookResponse {
pub last_update_id: i64,
pub update_id: i64,
pub bids: Vec<OrderbookOrder>,
pub asks: Vec<OrderbookOrder>,
}Expand description
Order book updates pushed over a subscription consist of a list of bid orders and a list of ask orders.
Fields§
§last_update_id: i64§update_id: i64§bids: Vec<OrderbookOrder>§asks: Vec<OrderbookOrder>Trait Implementations§
Source§impl Clone for SubscribeOrderbookResponse
impl Clone for SubscribeOrderbookResponse
Source§fn clone(&self) -> SubscribeOrderbookResponse
fn clone(&self) -> SubscribeOrderbookResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SubscribeOrderbookResponse
impl Debug for SubscribeOrderbookResponse
Source§impl From<SubscribeOrderbookResponse> for OpenLimitsWebSocketMessage
impl From<SubscribeOrderbookResponse> for OpenLimitsWebSocketMessage
Source§fn from(from: SubscribeOrderbookResponse) -> Self
fn from(from: SubscribeOrderbookResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubscribeOrderbookResponse
impl RefUnwindSafe for SubscribeOrderbookResponse
impl Send for SubscribeOrderbookResponse
impl Sync for SubscribeOrderbookResponse
impl Unpin for SubscribeOrderbookResponse
impl UnsafeUnpin for SubscribeOrderbookResponse
impl UnwindSafe for SubscribeOrderbookResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more