pub struct EventInsights {
pub qual: Option<Value>,
pub playoff: Option<Value>,
}
Expand description
EventInsights : A year-specific event insight object expressed as a JSON string, separated in to qual
and playoff
fields. See also Event_Insights_2016, Event_Insights_2017, etc.
Fields§
§qual: Option<Value>
Inights for the qualification round of an event
playoff: Option<Value>
Insights for the playoff round of an event
Implementations§
Source§impl EventInsights
impl EventInsights
Sourcepub fn new() -> EventInsights
pub fn new() -> EventInsights
A year-specific event insight object expressed as a JSON string, separated in to qual
and playoff
fields. See also Event_Insights_2016, Event_Insights_2017, etc.
Trait Implementations§
Source§impl Clone for EventInsights
impl Clone for EventInsights
Source§fn clone(&self) -> EventInsights
fn clone(&self) -> EventInsights
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EventInsights
impl Debug for EventInsights
Source§impl Default for EventInsights
impl Default for EventInsights
Source§fn default() -> EventInsights
fn default() -> EventInsights
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventInsights
impl<'de> Deserialize<'de> for EventInsights
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 PartialEq for EventInsights
impl PartialEq for EventInsights
Source§impl Serialize for EventInsights
impl Serialize for EventInsights
impl StructuralPartialEq for EventInsights
Auto Trait Implementations§
impl Freeze for EventInsights
impl RefUnwindSafe for EventInsights
impl Send for EventInsights
impl Sync for EventInsights
impl Unpin for EventInsights
impl UnwindSafe for EventInsights
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