pub struct Goal {
pub id: i32,
pub score_team1: Option<i32>,
pub score_team2: Option<i32>,
pub match_minute: Option<i32>,
pub goal_getter_id: i32,
pub goal_getter_name: Option<String>,
pub is_penalty: Option<bool>,
pub is_own_goal: Option<bool>,
pub is_overtime: Option<bool>,
pub comment: Option<String>,
}
Expand description
A data structure representing a goal
Fields§
§id: i32
The identifier of this goal data
score_team1: Option<i32>
The score of the first team when the goal was scored
score_team2: Option<i32>
The score of the second team when the goal was scored
match_minute: Option<i32>
The minute in the match when the goal was scored
goal_getter_id: i32
The identifier of the goal getter data
goal_getter_name: Option<String>
The name of the player scoring the goal
is_penalty: Option<bool>
Indicates whether the goal scored was the result of a penalty kick
is_own_goal: Option<bool>
Indicates of the goal was an own-goal
is_overtime: Option<bool>
Indicates if the goal was scored during overtime
comment: Option<String>
A comment associated with the goal
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Goal
impl<'de> Deserialize<'de> for Goal
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 Goal
impl RefUnwindSafe for Goal
impl Send for Goal
impl Sync for Goal
impl Unpin for Goal
impl UnwindSafe for Goal
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