pub struct PredictionEventMetadata {
pub close_time: Option<String>,
pub event_id: String,
pub image_url: Option<Url>,
pub is_live: Option<bool>,
pub series: Option<String>,
pub slug: Option<String>,
pub subtitle: Option<String>,
pub title: Option<String>,
}Fields§
§close_time: Option<String>ISO 8601 formatted close time
event_id: String§image_url: Option<Url>§is_live: Option<bool>§series: Option<String>§slug: Option<String>§subtitle: Option<String>§title: Option<String>Trait Implementations§
Source§impl Clone for PredictionEventMetadata
impl Clone for PredictionEventMetadata
Source§fn clone(&self) -> PredictionEventMetadata
fn clone(&self) -> PredictionEventMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PredictionEventMetadata
impl Debug for PredictionEventMetadata
Source§impl<'de> Deserialize<'de> for PredictionEventMetadata
impl<'de> Deserialize<'de> for PredictionEventMetadata
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 PredictionEventMetadata
impl RefUnwindSafe for PredictionEventMetadata
impl Send for PredictionEventMetadata
impl Sync for PredictionEventMetadata
impl Unpin for PredictionEventMetadata
impl UnsafeUnpin for PredictionEventMetadata
impl UnwindSafe for PredictionEventMetadata
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