pub struct VAREvent {
pub period_id: u8,
pub min: u16,
pub time_str: Option<String>,
pub team_id: String,
pub player_id: String,
pub player_name: String,
pub var_type: String,
pub outcome: Option<String>,
pub decision: String,
}Fields§
§period_id: u8§min: u16§time_str: Option<String>§team_id: String§player_id: String§player_name: String§var_type: String§outcome: Option<String>§decision: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for VAREvent
impl<'de> Deserialize<'de> for VAREvent
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 VAREvent
impl RefUnwindSafe for VAREvent
impl Send for VAREvent
impl Sync for VAREvent
impl Unpin for VAREvent
impl UnsafeUnpin for VAREvent
impl UnwindSafe for VAREvent
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