pub struct ThreeStar {
pub star: i32,
pub player_id: i64,
pub team_abbrev: String,
pub headshot: String,
pub name: LocalizedString,
pub sweater_no: i32,
pub position: Position,
pub goals: Option<i32>,
pub assists: Option<i32>,
pub points: Option<i32>,
pub goals_against_average: Option<f64>,
pub save_pctg: Option<f64>,
}Expand description
Three stars selection
Fields§
§star: i32§player_id: i64§team_abbrev: String§headshot: String§name: LocalizedString§sweater_no: i32§position: Position§goals: Option<i32>§assists: Option<i32>§points: Option<i32>§goals_against_average: Option<f64>§save_pctg: Option<f64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ThreeStar
impl<'de> Deserialize<'de> for ThreeStar
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
impl StructuralPartialEq for ThreeStar
Auto Trait Implementations§
impl Freeze for ThreeStar
impl RefUnwindSafe for ThreeStar
impl Send for ThreeStar
impl Sync for ThreeStar
impl Unpin for ThreeStar
impl UnwindSafe for ThreeStar
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