pub struct PartialBookDepthResponse {
pub last_update_id: Option<i64>,
pub bids: Option<Vec<Vec<String>>>,
pub asks: Option<Vec<Vec<String>>>,
}Fields§
§last_update_id: Option<i64>§bids: Option<Vec<Vec<String>>>§asks: Option<Vec<Vec<String>>>Implementations§
Source§impl PartialBookDepthResponse
impl PartialBookDepthResponse
pub fn new() -> PartialBookDepthResponse
Trait Implementations§
Source§impl Clone for PartialBookDepthResponse
impl Clone for PartialBookDepthResponse
Source§fn clone(&self) -> PartialBookDepthResponse
fn clone(&self) -> PartialBookDepthResponse
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 PartialBookDepthResponse
impl Debug for PartialBookDepthResponse
Source§impl Default for PartialBookDepthResponse
impl Default for PartialBookDepthResponse
Source§fn default() -> PartialBookDepthResponse
fn default() -> PartialBookDepthResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PartialBookDepthResponse
impl<'de> Deserialize<'de> for PartialBookDepthResponse
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 PartialBookDepthResponse
impl PartialEq for PartialBookDepthResponse
Source§fn eq(&self, other: &PartialBookDepthResponse) -> bool
fn eq(&self, other: &PartialBookDepthResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PartialBookDepthResponse
impl Serialize for PartialBookDepthResponse
impl StructuralPartialEq for PartialBookDepthResponse
Auto Trait Implementations§
impl Freeze for PartialBookDepthResponse
impl RefUnwindSafe for PartialBookDepthResponse
impl Send for PartialBookDepthResponse
impl Sync for PartialBookDepthResponse
impl Unpin for PartialBookDepthResponse
impl UnsafeUnpin for PartialBookDepthResponse
impl UnwindSafe for PartialBookDepthResponse
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