Trait pt::apis::ReferenceApi[][src]

pub trait ReferenceApi {
    fn v1_marketstatus_now_get<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<MarketStatus, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn v1_marketstatus_upcoming_get<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Vec<MarketHoliday>, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn v1_meta_symbols_symbol_company_get<'life0, 'life1, 'async_trait>(
        &'life0 self,
        symbol: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<Company, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn v1_meta_symbols_symbol_news_get<'life0, 'life1, 'async_trait>(
        &'life0 self,
        symbol: &'life1 str,
        perpage: i64,
        page: i64
    ) -> Pin<Box<dyn Future<Output = Result<Vec<News>, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn v2_reference_dividends_symbol_get<'life0, 'life1, 'async_trait>(
        &'life0 self,
        symbol: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<InlineResponse2005, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn v2_reference_financials_symbol_get<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 self,
        symbol: &'life1 str,
        limit: i64,
        _type: &'life2 str,
        sort: &'life3 str
    ) -> Pin<Box<dyn Future<Output = Result<InlineResponse2006, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        Self: 'async_trait
;
fn v2_reference_locales_get<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<InlineResponse2003, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn v2_reference_markets_get<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<InlineResponse2002, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn v2_reference_splits_symbol_get<'life0, 'life1, 'async_trait>(
        &'life0 self,
        symbol: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<InlineResponse2004, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
;
fn v2_reference_tickers_get<'life0, 'life1, 'life2, 'life3, 'life4, 'life5, 'async_trait>(
        &'life0 self,
        sort: &'life1 str,
        _type: &'life2 str,
        market: &'life3 str,
        locale: &'life4 str,
        search: &'life5 str,
        perpage: i64,
        page: i64,
        active: bool
    ) -> Pin<Box<dyn Future<Output = Result<InlineResponse200, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        'life4: 'async_trait,
        'life5: 'async_trait,
        Self: 'async_trait
;
fn v2_reference_types_get<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<InlineResponse2001, Error<Value>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors