pub struct TickerResponse2ResultInner {Show 15 fields
pub symbol: Option<String>,
pub price_change: Option<String>,
pub price_change_percent: Option<String>,
pub weighted_avg_price: Option<String>,
pub open_price: Option<String>,
pub high_price: Option<String>,
pub low_price: Option<String>,
pub last_price: Option<String>,
pub volume: Option<String>,
pub quote_volume: Option<String>,
pub open_time: Option<i64>,
pub close_time: Option<i64>,
pub first_id: Option<i64>,
pub last_id: Option<i64>,
pub count: Option<i64>,
}Fields§
§symbol: Option<String>§price_change: Option<String>§price_change_percent: Option<String>§weighted_avg_price: Option<String>§open_price: Option<String>§high_price: Option<String>§low_price: Option<String>§last_price: Option<String>§volume: Option<String>§quote_volume: Option<String>§open_time: Option<i64>§close_time: Option<i64>§first_id: Option<i64>§last_id: Option<i64>§count: Option<i64>Implementations§
Source§impl TickerResponse2ResultInner
impl TickerResponse2ResultInner
pub fn new() -> TickerResponse2ResultInner
Trait Implementations§
Source§impl Clone for TickerResponse2ResultInner
impl Clone for TickerResponse2ResultInner
Source§fn clone(&self) -> TickerResponse2ResultInner
fn clone(&self) -> TickerResponse2ResultInner
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 TickerResponse2ResultInner
impl Debug for TickerResponse2ResultInner
Source§impl Default for TickerResponse2ResultInner
impl Default for TickerResponse2ResultInner
Source§fn default() -> TickerResponse2ResultInner
fn default() -> TickerResponse2ResultInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TickerResponse2ResultInner
impl<'de> Deserialize<'de> for TickerResponse2ResultInner
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 TickerResponse2ResultInner
impl PartialEq for TickerResponse2ResultInner
Source§fn eq(&self, other: &TickerResponse2ResultInner) -> bool
fn eq(&self, other: &TickerResponse2ResultInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TickerResponse2ResultInner
Auto Trait Implementations§
impl Freeze for TickerResponse2ResultInner
impl RefUnwindSafe for TickerResponse2ResultInner
impl Send for TickerResponse2ResultInner
impl Sync for TickerResponse2ResultInner
impl Unpin for TickerResponse2ResultInner
impl UnsafeUnpin for TickerResponse2ResultInner
impl UnwindSafe for TickerResponse2ResultInner
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