pub struct SeasonSeriesMatchup {
pub season_series: Vec<SeriesGame>,
pub season_series_wins: SeriesWins,
pub game_info: SeriesGameInfo,
}Expand description
Season series matchup
Fields§
§season_series: Vec<SeriesGame>§season_series_wins: SeriesWins§game_info: SeriesGameInfoTrait Implementations§
Source§impl Clone for SeasonSeriesMatchup
impl Clone for SeasonSeriesMatchup
Source§fn clone(&self) -> SeasonSeriesMatchup
fn clone(&self) -> SeasonSeriesMatchup
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 SeasonSeriesMatchup
impl Debug for SeasonSeriesMatchup
Source§impl<'de> Deserialize<'de> for SeasonSeriesMatchup
impl<'de> Deserialize<'de> for SeasonSeriesMatchup
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 SeasonSeriesMatchup
impl RefUnwindSafe for SeasonSeriesMatchup
impl Send for SeasonSeriesMatchup
impl Sync for SeasonSeriesMatchup
impl Unpin for SeasonSeriesMatchup
impl UnwindSafe for SeasonSeriesMatchup
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