pub struct Seat {
pub seat_description: Option<String>,
pub seat_identifier: Option<String>,
pub seat_number: Option<String>,
pub seat_row: Option<String>,
pub seat_section: Option<String>,
pub seat_type: Option<String>,
}Expand description
A dictionary with seat information
Fields§
§seat_description: Option<String>Seat description
seat_identifier: Option<String>Seat identifier
seat_number: Option<String>Seat number
seat_row: Option<String>Seat row
seat_section: Option<String>Seat section
seat_type: Option<String>Seat type
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Seat
impl<'de> Deserialize<'de> for Seat
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 Seat
impl RefUnwindSafe for Seat
impl Send for Seat
impl Sync for Seat
impl Unpin for Seat
impl UnsafeUnpin for Seat
impl UnwindSafe for Seat
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