pub struct EventSeat {
pub gate: Option<LocalizedString>,
pub kind: Option<String>,
pub row: Option<LocalizedString>,
pub seat: Option<LocalizedString>,
pub section: Option<LocalizedString>,
}
Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§gate: Option<LocalizedString>
The gate the ticket holder should enter to get to their seat, such as “A” or “West”. This field is localizable so you may translate words or use different alphabets for the characters in an identifier.
kind: Option<String>
Identifies what kind of resource this is. Value: the fixed string "walletobjects#eventSeat"
.
row: Option<LocalizedString>
The row of the seat, such as “1”, E“, “BB”, or “A5”. This field is localizable so you may translate words or use different alphabets for the characters in an identifier.
seat: Option<LocalizedString>
The seat number, such as “1”, “2”, “3”, or any other seat identifier. This field is localizable so you may translate words or use different alphabets for the characters in an identifier.
section: Option<LocalizedString>
The section of the seat, such as “121”. This field is localizable so you may translate words or use different alphabets for the characters in an identifier.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EventSeat
impl<'de> Deserialize<'de> for EventSeat
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>,
impl Part for EventSeat
Auto Trait Implementations§
impl Freeze for EventSeat
impl RefUnwindSafe for EventSeat
impl Send for EventSeat
impl Sync for EventSeat
impl Unpin for EventSeat
impl UnwindSafe for EventSeat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more