[][src]Struct eodhistoricaldata_api::EodHistConnector

pub struct EodHistConnector { /* fields omitted */ }

Container for connection paramters to edohistoricaldata server

Methods

impl EodHistConnector[src]

pub fn new(token: String) -> EodHistConnector[src]

Constructor for a new instance of EodHistConnector. token is the API token you got from eodhistoricaldata

pub fn get_latest_quote(
    &self,
    ticker: &str
) -> Result<RealTimeQuote, EodHistDataError>
[src]

Retrieve the latest quote for the given ticker

pub fn get_quote_history(
    &self,
    ticker: &str,
    start: NaiveDate,
    end: NaiveDate
) -> Result<Vec<HistoricQuote>, EodHistDataError>
[src]

Retrieve the quote history for the given ticker form date start to end (inklusive), if available

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> 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