pub struct TickerTradingDayResponseResultInner {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>Absolute price change
price_change_percent: Option<String>Relative price change in percent
weighted_avg_price: Option<String>quoteVolume / volume
open_price: Option<String>§high_price: Option<String>§low_price: Option<String>§last_price: Option<String>§volume: Option<String>Volume in base asset
quote_volume: Option<String>Volume in quote asset
open_time: Option<i64>§close_time: Option<i64>§first_id: Option<i64>Trade ID of the first trade in the interval
last_id: Option<i64>Trade ID of the last trade in the interval
count: Option<i64>Number of trades in the interval
Implementations§
Trait Implementations§
Source§impl Clone for TickerTradingDayResponseResultInner
impl Clone for TickerTradingDayResponseResultInner
Source§fn clone(&self) -> TickerTradingDayResponseResultInner
fn clone(&self) -> TickerTradingDayResponseResultInner
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 TickerTradingDayResponseResultInner
impl Default for TickerTradingDayResponseResultInner
Source§fn default() -> TickerTradingDayResponseResultInner
fn default() -> TickerTradingDayResponseResultInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TickerTradingDayResponseResultInner
impl<'de> Deserialize<'de> for TickerTradingDayResponseResultInner
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 TickerTradingDayResponseResultInner
Auto Trait Implementations§
impl Freeze for TickerTradingDayResponseResultInner
impl RefUnwindSafe for TickerTradingDayResponseResultInner
impl Send for TickerTradingDayResponseResultInner
impl Sync for TickerTradingDayResponseResultInner
impl Unpin for TickerTradingDayResponseResultInner
impl UnsafeUnpin for TickerTradingDayResponseResultInner
impl UnwindSafe for TickerTradingDayResponseResultInner
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