pub struct Event {Show 23 fields
pub name: Option<String>,
pub event_type: String,
pub id: String,
pub test: bool,
pub url: Option<String>,
pub locale: String,
pub images: Vec<Image>,
pub sales: Option<Sales>,
pub dates: Dates,
pub classifications: Vec<Classification>,
pub promoter: Option<Promoter>,
pub promoters: Vec<Promoter>,
pub price_ranges: Vec<PriceRange>,
pub products: Vec<Product>,
pub seatmap: Option<Seatmap>,
pub accessibility: Option<Accessibility>,
pub ticket_limit: Option<TicketLimit>,
pub age_restrictions: Option<AgeRestrictions>,
pub ticketing: Option<Ticketing>,
pub links: EventLinks,
pub embedded: EventEmbedded,
pub info: Option<String>,
pub please_note: Option<String>,
}Fields§
§name: Option<String>§event_type: String§id: String§test: bool§url: Option<String>§locale: String§images: Vec<Image>§sales: Option<Sales>§dates: Dates§classifications: Vec<Classification>§promoter: Option<Promoter>§promoters: Vec<Promoter>§price_ranges: Vec<PriceRange>§products: Vec<Product>§seatmap: Option<Seatmap>§accessibility: Option<Accessibility>§ticket_limit: Option<TicketLimit>§age_restrictions: Option<AgeRestrictions>§ticketing: Option<Ticketing>§links: EventLinks§embedded: EventEmbedded§info: Option<String>§please_note: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Event
impl<'de> Deserialize<'de> for Event
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
impl StructuralPartialEq for Event
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnsafeUnpin for Event
impl UnwindSafe for Event
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