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