[][src]Struct alpha_vantage::crypto::Entry

pub struct Entry { /* fields omitted */ }

Struct which stores Crypto data

Methods

impl Entry[src]

pub fn time(&self) -> String[src]

Return time as String

pub fn market_open(&self) -> f64[src]

Return market open value

pub fn usd_open(&self) -> f64[src]

Return usd open value

pub fn market_high(&self) -> f64[src]

Return market high value

pub fn usd_high(&self) -> f64[src]

Return usd high value

pub fn market_low(&self) -> f64[src]

Return market low value

pub fn usd_low(&self) -> f64[src]

Return usd low value

pub fn market_close(&self) -> f64[src]

Return market close value

pub fn usd_close(&self) -> f64[src]

Return usd close value

pub fn volume(&self) -> f64[src]

Return volume

pub fn market_cap(&self) -> f64[src]

Return market cap

Trait Implementations

impl Default for Entry[src]

impl Clone for Entry[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Entry[src]

Auto Trait Implementations

impl Send for Entry

impl Sync for Entry

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T