[][src]Struct eodhistoricaldata_api::RealTimeQuote

pub struct RealTimeQuote {
    pub code: String,
    pub timestamp: u64,
    pub gmtoffset: i32,
    pub open: f64,
    pub high: f64,
    pub low: f64,
    pub close: f64,
    pub volume: usize,
    pub previous_close: f64,
    pub change: f64,
    pub change_p: f64,
}

Fields

code: String

Ticker name

timestamp: u64

UNIX timestamp convention, seconds passed sind 1st January 1970

gmtoffset: i32open: f64high: f64low: f64close: f64volume: usizeprevious_close: f64change: f64change_p: f64

Trait Implementations

impl Debug for RealTimeQuote[src]

impl<'de> Deserialize<'de> for RealTimeQuote[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, U> Into<U> for T where
    U: From<T>, 
[src]

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<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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