pub struct FullDepthStreamResponse {
pub e: Option<String>,
pub e_uppercase: Option<i64>,
pub t_uppercase: Option<i64>,
pub u_uppercase: Option<i64>,
pub u: Option<i64>,
pub pu: Option<i64>,
pub s: Option<String>,
pub b: Option<Vec<Vec<String>>>,
pub a: Option<Vec<Vec<String>>>,
}Fields§
§e: Option<String>Event type
e_uppercase: Option<i64>Event time (ms)
t_uppercase: Option<i64>Matching time (ms)
u_uppercase: Option<i64>First updateId in this event
u: Option<i64>Last updateId in this event
pu: Option<i64>Previous updateId from the last push
s: Option<String>Symbol
b: Option<Vec<Vec<String>>>bids to be updated
a: Option<Vec<Vec<String>>>asks to be updated
Implementations§
Source§impl FullDepthStreamResponse
impl FullDepthStreamResponse
pub fn new() -> FullDepthStreamResponse
Trait Implementations§
Source§impl Clone for FullDepthStreamResponse
impl Clone for FullDepthStreamResponse
Source§fn clone(&self) -> FullDepthStreamResponse
fn clone(&self) -> FullDepthStreamResponse
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 FullDepthStreamResponse
impl Debug for FullDepthStreamResponse
Source§impl Default for FullDepthStreamResponse
impl Default for FullDepthStreamResponse
Source§fn default() -> FullDepthStreamResponse
fn default() -> FullDepthStreamResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FullDepthStreamResponse
impl<'de> Deserialize<'de> for FullDepthStreamResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FullDepthStreamResponse
impl PartialEq for FullDepthStreamResponse
Source§impl Serialize for FullDepthStreamResponse
impl Serialize for FullDepthStreamResponse
impl StructuralPartialEq for FullDepthStreamResponse
Auto Trait Implementations§
impl Freeze for FullDepthStreamResponse
impl RefUnwindSafe for FullDepthStreamResponse
impl Send for FullDepthStreamResponse
impl Sync for FullDepthStreamResponse
impl Unpin for FullDepthStreamResponse
impl UnsafeUnpin for FullDepthStreamResponse
impl UnwindSafe for FullDepthStreamResponse
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