pub struct Plays {
pub all_plays: Option<Vec<Play>>,
pub current_play: Option<Play>,
pub scoring_plays: Option<Vec<u8>>,
pub plays_by_inning: Option<Vec<PlaysByInning>>,
}Fields§
§all_plays: Option<Vec<Play>>§current_play: Option<Play>§scoring_plays: Option<Vec<u8>>§plays_by_inning: Option<Vec<PlaysByInning>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Plays
impl<'de> Deserialize<'de> for Plays
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 Plays
impl RefUnwindSafe for Plays
impl Send for Plays
impl Sync for Plays
impl Unpin for Plays
impl UnsafeUnpin for Plays
impl UnwindSafe for Plays
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