pub struct PartialDepthStreamResponse {
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>eventType
e_uppercase: Option<i64>eventTime
t_uppercase: Option<i64>transactionTime
u_uppercase: Option<i64>firstUpdateId
u: Option<i64>lastUpdateId
pu: Option<i64>previousUpdateId
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 PartialDepthStreamResponse
impl PartialDepthStreamResponse
pub fn new() -> PartialDepthStreamResponse
Trait Implementations§
Source§impl Clone for PartialDepthStreamResponse
impl Clone for PartialDepthStreamResponse
Source§fn clone(&self) -> PartialDepthStreamResponse
fn clone(&self) -> PartialDepthStreamResponse
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 PartialDepthStreamResponse
impl Debug for PartialDepthStreamResponse
Source§impl Default for PartialDepthStreamResponse
impl Default for PartialDepthStreamResponse
Source§fn default() -> PartialDepthStreamResponse
fn default() -> PartialDepthStreamResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartialDepthStreamResponse
impl<'de> Deserialize<'de> for PartialDepthStreamResponse
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
impl StructuralPartialEq for PartialDepthStreamResponse
Auto Trait Implementations§
impl Freeze for PartialDepthStreamResponse
impl RefUnwindSafe for PartialDepthStreamResponse
impl Send for PartialDepthStreamResponse
impl Sync for PartialDepthStreamResponse
impl Unpin for PartialDepthStreamResponse
impl UnsafeUnpin for PartialDepthStreamResponse
impl UnwindSafe for PartialDepthStreamResponse
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