pub struct ClubGoalieStats {Show 20 fields
pub player_id: i64,
pub headshot: String,
pub first_name: LocalizedString,
pub last_name: LocalizedString,
pub games_played: i32,
pub games_started: i32,
pub wins: i32,
pub losses: i32,
pub overtime_losses: i32,
pub goals_against_average: f64,
pub save_percentage: f64,
pub shots_against: i32,
pub saves: i32,
pub goals_against: i32,
pub shutouts: i32,
pub goals: i32,
pub assists: i32,
pub points: i32,
pub penalty_minutes: i32,
pub time_on_ice: i64,
}Expand description
Goalie season statistics for a team
Fields§
§player_id: i64§headshot: String§first_name: LocalizedString§last_name: LocalizedString§games_played: i32§games_started: i32§wins: i32§losses: i32§overtime_losses: i32§goals_against_average: f64§save_percentage: f64§shots_against: i32§saves: i32§goals_against: i32§shutouts: i32§goals: i32§assists: i32§points: i32§penalty_minutes: i32§time_on_ice: i64Trait Implementations§
Source§impl Clone for ClubGoalieStats
impl Clone for ClubGoalieStats
Source§fn clone(&self) -> ClubGoalieStats
fn clone(&self) -> ClubGoalieStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClubGoalieStats
impl Debug for ClubGoalieStats
Source§impl<'de> Deserialize<'de> for ClubGoalieStats
impl<'de> Deserialize<'de> for ClubGoalieStats
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
Source§impl Display for ClubGoalieStats
impl Display for ClubGoalieStats
Source§impl PartialEq for ClubGoalieStats
impl PartialEq for ClubGoalieStats
Source§impl Serialize for ClubGoalieStats
impl Serialize for ClubGoalieStats
impl StructuralPartialEq for ClubGoalieStats
Auto Trait Implementations§
impl Freeze for ClubGoalieStats
impl RefUnwindSafe for ClubGoalieStats
impl Send for ClubGoalieStats
impl Sync for ClubGoalieStats
impl Unpin for ClubGoalieStats
impl UnwindSafe for ClubGoalieStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.