Struct binance_api_async::binance_futures::model::PriceStats[][src]

pub struct PriceStats {
Show fields pub symbol: String, pub price_change: String, pub price_change_percent: String, pub weighted_avg_price: String, pub last_price: f64, pub open_price: f64, pub high_price: f64, pub low_price: f64, pub volume: f64, pub quote_volume: f64, pub last_qty: f64, pub open_time: u64, pub close_time: u64, pub first_id: u64, pub last_id: u64, pub count: u64,
}

Fields

symbol: Stringprice_change: Stringprice_change_percent: Stringweighted_avg_price: Stringlast_price: f64open_price: f64high_price: f64low_price: f64volume: f64quote_volume: f64last_qty: f64open_time: u64close_time: u64first_id: u64last_id: u64count: u64

Trait Implementations

impl Clone for PriceStats[src]

impl Debug for PriceStats[src]

impl<'de> Deserialize<'de> for PriceStats[src]

impl Serialize for PriceStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,