pub enum TicketingType {
Available,
Unavailable,
}Expand description
Specifies whether tickets can be bought for this item
Variants§
Trait Implementations§
Source§impl Clone for TicketingType
impl Clone for TicketingType
Source§fn clone(&self) -> TicketingType
fn clone(&self) -> TicketingType
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 moreimpl Copy for TicketingType
Source§impl Debug for TicketingType
impl Debug for TicketingType
Source§impl Default for TicketingType
impl Default for TicketingType
Source§impl<'de> Deserialize<'de> for TicketingType
impl<'de> Deserialize<'de> for TicketingType
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 Eq for TicketingType
Source§impl PartialEq for TicketingType
impl PartialEq for TicketingType
Source§fn eq(&self, other: &TicketingType) -> bool
fn eq(&self, other: &TicketingType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TicketingType
impl Serialize for TicketingType
impl StructuralPartialEq for TicketingType
Auto Trait Implementations§
impl Freeze for TicketingType
impl RefUnwindSafe for TicketingType
impl Send for TicketingType
impl Sync for TicketingType
impl Unpin for TicketingType
impl UnsafeUnpin for TicketingType
impl UnwindSafe for TicketingType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.