openligadb::models::match

Struct Match

Source
pub struct Match {
Show 17 fields pub id: i32, pub when: Option<String>, pub time_zone: Option<String>, pub league_id: i32, pub league_name: Option<String>, pub league_season: Option<i32>, pub league_shortcut: Option<String>, pub when_utc: Option<String>, pub group: Group, pub team1: Team, pub team2: Team, pub last_update: Option<String>, pub is_finished: bool, pub results: Option<Vec<MatchResult>>, pub goals: Option<Vec<Goal>>, pub location: Option<Location>, pub number_of_viewers: Option<i32>,
}
Expand description

A data structure representing a match

Fields§

§id: i32

The identifier of the match data

§when: Option<String>

The time when the match took place, or will take place

§time_zone: Option<String>

The time zone of the match

§league_id: i32

The identifier of the league

§league_name: Option<String>

The name of the league

§league_season: Option<i32>

The season of this match

§league_shortcut: Option<String>

The league shortcut; see League#shortcut

§when_utc: Option<String>

The date and time in UTC for the match

§group: Group

The group to which this match belongs

§team1: Team

The first team’s information

§team2: Team

The second team’s information

§last_update: Option<String>

The timestamp when this data was last updated

§is_finished: bool

Indicates if the match is finished or in-progress

§results: Option<Vec<MatchResult>>

The match results

§goals: Option<Vec<Goal>>

The number of goals scored in the match

§location: Option<Location>

The location where the match was played

§number_of_viewers: Option<i32>

The number of viewers of the match

Implementations§

Source§

impl Match

Source

pub async fn get(id: i32) -> Result<Self, Box<dyn Error>>

Get a match

Fetches the specified match; see Match#id

  • id - The identifier of the match
Source

pub async fn by_teams( team1_id: i32, team2_id: i32, ) -> Result<Vec<Self>, Box<dyn Error>>

Get matches played by two teams

Fetches a list of matches played by the two specified teams.

  • team1_id - The identifier of the first team
  • team2_id - The identifier of the second team
Source

pub async fn by_league( league: &str, season: i32, ) -> Result<Vec<Self>, Box<dyn Error>>

Get a league’s season matches

Fetches all the matches played in a league’s specified season.

  • league - The league shortcut; see League#shortcut
  • season - The season, usually the starting year
Source

pub async fn by_league_group( league: &str, season: i32, group_order_id: i32, ) -> Result<Vec<Self>, Box<dyn Error>>

Get matches for a league group

Fetches a list of matches for the specified league, season, and group order.

  • league - The league shortcut; see League#shortcut
  • season - The season, usually the starting year
  • group_order_id - The identifier of the group order
Source

pub async fn next_match_by_league_team( league: i32, team_id: i32, ) -> Result<Self, Box<dyn Error>>

Get a team’s next match

Fetches the next match for the specified team.

  • league - The league shortcut; see League#shortcut
  • team_id - The identifier of the team
Source

pub async fn last_match_by_league_team( league: i32, team_id: i32, ) -> Result<Self, Box<dyn Error>>

Get a team’s last match

Fetches the most recently played match for the specified team.

  • league - The league shortcut; see League#shortcut
  • team_id - The identifier of the team
Source

pub async fn next_match_by_league(league: &str) -> Result<Self, Box<dyn Error>>

Get the next league match

Fetches the next match to be played in the specified league.

Source

pub async fn last_match_by_league(league: &str) -> Result<Self, Box<dyn Error>>

Get the last league match

Fetches the most recently played match for the specified league.

Source

pub async fn by_league_team( league: &str, season: i32, team_filter: &str, ) -> Result<Vec<Self>, Box<dyn Error>>

Get teams for a league’s season

Fetches a list of teams that match the filter, within a specific league and season.

  • league - The league shortcut; see League#shortcut
  • season - The season, usually the starting year
  • team_filter - A search string for the team
Source

pub async fn by_team_range( team_filter: &str, week_count_past: i32, week_count_future: i32, ) -> Result<Vec<Self>, Box<dyn Error>>

Get a range of teams’ matches

Fetches all the matches for teams that match the filter within the specified time window, relative to the current date.

  • team_filter - A search string for the team
  • week_count_past - The number of weeks in the past
  • week_count_future - The number of weeks in the future
Source

pub async fn by_team_id_range( team_id: i32, week_count_past: i32, week_count_future: i32, ) -> Result<Vec<Self>, Box<dyn Error>>

Get a range of team matches

Fetches all the matches for a specific team within the specified time window, relative to the current date.

  • team_id - The identifier of the team
  • week_count_past - The number of weeks in the past
  • week_count_future - The number of weeks in the future

Trait Implementations§

Source§

impl Debug for Match

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Match

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for Match

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl Freeze for Match

§

impl RefUnwindSafe for Match

§

impl Send for Match

§

impl Sync for Match

§

impl Unpin for Match

§

impl UnwindSafe for Match

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T