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
impl Match
Sourcepub async fn by_teams(
team1_id: i32,
team2_id: i32,
) -> Result<Vec<Self>, Box<dyn Error>>
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 teamteam2_id
- The identifier of the second team
Sourcepub async fn by_league(
league: &str,
season: i32,
) -> Result<Vec<Self>, Box<dyn Error>>
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#shortcutseason
- The season, usually the starting year
Sourcepub async fn by_league_group(
league: &str,
season: i32,
group_order_id: i32,
) -> Result<Vec<Self>, Box<dyn Error>>
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#shortcutseason
- The season, usually the starting yeargroup_order_id
- The identifier of the group order
Sourcepub async fn next_match_by_league_team(
league: i32,
team_id: i32,
) -> Result<Self, Box<dyn Error>>
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#shortcutteam_id
- The identifier of the team
Sourcepub async fn last_match_by_league_team(
league: i32,
team_id: i32,
) -> Result<Self, Box<dyn Error>>
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#shortcutteam_id
- The identifier of the team
Sourcepub async fn next_match_by_league(league: &str) -> Result<Self, Box<dyn Error>>
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.
league
- The league shortcut; see League#shortcut
Sourcepub async fn last_match_by_league(league: &str) -> Result<Self, Box<dyn Error>>
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.
league
- The league shortcut; see League#shortcut
Sourcepub async fn by_league_team(
league: &str,
season: i32,
team_filter: &str,
) -> Result<Vec<Self>, Box<dyn Error>>
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#shortcutseason
- The season, usually the starting yearteam_filter
- A search string for the team
Sourcepub async fn by_team_range(
team_filter: &str,
week_count_past: i32,
week_count_future: i32,
) -> Result<Vec<Self>, Box<dyn Error>>
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 teamweek_count_past
- The number of weeks in the pastweek_count_future
- The number of weeks in the future
Sourcepub async fn by_team_id_range(
team_id: i32,
week_count_past: i32,
week_count_future: i32,
) -> Result<Vec<Self>, Box<dyn Error>>
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 teamweek_count_past
- The number of weeks in the pastweek_count_future
- The number of weeks in the future