pub struct MatchResult {
pub id: i32,
pub name: Option<String>,
pub points_team1: Option<i32>,
pub points_team2: Option<i32>,
pub order_id: i32,
pub type_id: i32,
pub description: Option<String>,
}
Expand description
A data structure representing a match result
Fields§
§id: i32
The identifier of the match result
name: Option<String>
The name of the result
points_team1: Option<i32>
The score of the first team in the match
points_team2: Option<i32>
The score of the second team in the match
order_id: i32
The result order identifier
type_id: i32
The result type identifier
description: Option<String>
The result description
Trait Implementations§
Source§impl Debug for MatchResult
impl Debug for MatchResult
Source§impl<'de> Deserialize<'de> for MatchResult
impl<'de> Deserialize<'de> for MatchResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MatchResult
impl RefUnwindSafe for MatchResult
impl Send for MatchResult
impl Sync for MatchResult
impl Unpin for MatchResult
impl UnwindSafe for MatchResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more