[][src]Trait nhl_stats::sync::StandingsApi

pub trait StandingsApi {
    fn get_standing_types(&self) -> Result<StandingTypes, Error>;
fn get_standings(
        &self,
        season: String,
        date: String
    ) -> Result<Standings, Error>;
fn get_standings_by_type(
        &self,
        _type: EnumStandingTypes,
        date: String,
        season: String
    ) -> Result<Standings, Error>; }

Required methods

fn get_standing_types(&self) -> Result<StandingTypes, Error>

fn get_standings(
    &self,
    season: String,
    date: String
) -> Result<Standings, Error>

fn get_standings_by_type(
    &self,
    _type: EnumStandingTypes,
    date: String,
    season: String
) -> Result<Standings, Error>

Loading content...

Implementors

impl StandingsApi for StandingsApiClient[src]

Loading content...