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