pub enum WaitlistReason {
EligibleSegmentFull,
}Expand description
Reasons a boarding request should be waitlisted instead of confirmed.
Variants§
EligibleSegmentFull
The room type is valid for the pet, but all matching rooms are occupied.
Trait Implementations§
Source§impl Clone for WaitlistReason
impl Clone for WaitlistReason
Source§fn clone(&self) -> WaitlistReason
fn clone(&self) -> WaitlistReason
Returns a duplicate of the value. Read more
1.0.0 · 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 WaitlistReason
impl Debug for WaitlistReason
Source§impl<'de> Deserialize<'de> for WaitlistReason
impl<'de> Deserialize<'de> for WaitlistReason
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
Source§impl PartialEq for WaitlistReason
impl PartialEq for WaitlistReason
Source§impl Serialize for WaitlistReason
impl Serialize for WaitlistReason
impl Copy for WaitlistReason
impl Eq for WaitlistReason
impl StructuralPartialEq for WaitlistReason
Auto Trait Implementations§
impl Freeze for WaitlistReason
impl RefUnwindSafe for WaitlistReason
impl Send for WaitlistReason
impl Sync for WaitlistReason
impl Unpin for WaitlistReason
impl UnsafeUnpin for WaitlistReason
impl UnwindSafe for WaitlistReason
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