pub struct Ticker24hrResponse2ResultInner {Show 21 fields
pub symbol: Option<String>,
pub price_change: Option<String>,
pub price_change_percent: Option<String>,
pub weighted_avg_price: Option<String>,
pub prev_close_price: Option<String>,
pub last_price: Option<String>,
pub last_qty: Option<String>,
pub bid_price: Option<String>,
pub bid_qty: Option<String>,
pub ask_price: Option<String>,
pub ask_qty: Option<String>,
pub open_price: Option<String>,
pub high_price: Option<String>,
pub low_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>Symbol Name
price_change: Option<String>§price_change_percent: Option<String>§weighted_avg_price: Option<String>§prev_close_price: Option<String>§last_price: Option<String>Closing price of the interval
last_qty: Option<String>§bid_price: Option<String>§bid_qty: Option<String>§ask_price: Option<String>§ask_qty: Option<String>§open_price: Option<String>Opening price of the Interval
high_price: Option<String>Highest price in the interval
low_price: Option<String>Lowest price in the interval
volume: Option<String>Total trade volume (in base asset)
quote_volume: Option<String>Total trade volume (in quote asset)
open_time: Option<i64>Start of the ticker interval
close_time: Option<i64>End of the ticker interval
first_id: Option<i64>First tradeId
last_id: Option<i64>Last tradeId
count: Option<i64>Trade count
Implementations§
Trait Implementations§
Source§impl Clone for Ticker24hrResponse2ResultInner
impl Clone for Ticker24hrResponse2ResultInner
Source§fn clone(&self) -> Ticker24hrResponse2ResultInner
fn clone(&self) -> Ticker24hrResponse2ResultInner
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 Default for Ticker24hrResponse2ResultInner
impl Default for Ticker24hrResponse2ResultInner
Source§fn default() -> Ticker24hrResponse2ResultInner
fn default() -> Ticker24hrResponse2ResultInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Ticker24hrResponse2ResultInner
impl<'de> Deserialize<'de> for Ticker24hrResponse2ResultInner
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 Ticker24hrResponse2ResultInner
Auto Trait Implementations§
impl Freeze for Ticker24hrResponse2ResultInner
impl RefUnwindSafe for Ticker24hrResponse2ResultInner
impl Send for Ticker24hrResponse2ResultInner
impl Sync for Ticker24hrResponse2ResultInner
impl Unpin for Ticker24hrResponse2ResultInner
impl UnsafeUnpin for Ticker24hrResponse2ResultInner
impl UnwindSafe for Ticker24hrResponse2ResultInner
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