pub struct GoalGetter {
pub id: i32,
pub name: Option<String>,
pub goal_count: i32,
}
Expand description
A data structure representing a goal getter, i.e., the scorer of a goal.
Fields§
§id: i32
The identifier of this goal getter data
name: Option<String>
The name of the player scoring the goal
goal_count: i32
The number of goals
Implementations§
Source§impl GoalGetter
impl GoalGetter
Trait Implementations§
Source§impl Debug for GoalGetter
impl Debug for GoalGetter
Source§impl<'de> Deserialize<'de> for GoalGetter
impl<'de> Deserialize<'de> for GoalGetter
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 GoalGetter
impl RefUnwindSafe for GoalGetter
impl Send for GoalGetter
impl Sync for GoalGetter
impl Unpin for GoalGetter
impl UnwindSafe for GoalGetter
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