pub struct ComboEvent {
pub event_id: Option<String>,
pub event_slug: Option<String>,
pub event_title: Option<String>,
pub event_image: Option<String>,
}Expand description
Event metadata attached to a combo leg’s market.
Fields§
§event_id: Option<String>Event identifier.
event_slug: Option<String>URL slug for the event.
event_title: Option<String>Human-readable event title.
event_image: Option<String>Event image URL.
Trait Implementations§
Source§impl Clone for ComboEvent
impl Clone for ComboEvent
Source§fn clone(&self) -> ComboEvent
fn clone(&self) -> ComboEvent
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 ComboEvent
impl Debug for ComboEvent
Source§impl<'de> Deserialize<'de> for ComboEvent
impl<'de> Deserialize<'de> for ComboEvent
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 ComboEvent
impl RefUnwindSafe for ComboEvent
impl Send for ComboEvent
impl Sync for ComboEvent
impl Unpin for ComboEvent
impl UnsafeUnpin for ComboEvent
impl UnwindSafe for ComboEvent
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