pub enum AppointmentStatus {
Active,
Cancelled,
Completed,
}Expand description
The status of the appointment.
Variants§
Trait Implementations§
Source§impl Clone for AppointmentStatus
impl Clone for AppointmentStatus
Source§fn clone(&self) -> AppointmentStatus
fn clone(&self) -> AppointmentStatus
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 AppointmentStatus
impl Debug for AppointmentStatus
Source§impl Default for AppointmentStatus
impl Default for AppointmentStatus
Source§fn default() -> AppointmentStatus
fn default() -> AppointmentStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppointmentStatus
impl<'de> Deserialize<'de> for AppointmentStatus
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 Hash for AppointmentStatus
impl Hash for AppointmentStatus
Source§impl Ord for AppointmentStatus
impl Ord for AppointmentStatus
Source§fn cmp(&self, other: &AppointmentStatus) -> Ordering
fn cmp(&self, other: &AppointmentStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AppointmentStatus
impl PartialEq for AppointmentStatus
Source§impl PartialOrd for AppointmentStatus
impl PartialOrd for AppointmentStatus
Source§impl Serialize for AppointmentStatus
impl Serialize for AppointmentStatus
impl Copy for AppointmentStatus
impl Eq for AppointmentStatus
impl StructuralPartialEq for AppointmentStatus
Auto Trait Implementations§
impl Freeze for AppointmentStatus
impl RefUnwindSafe for AppointmentStatus
impl Send for AppointmentStatus
impl Sync for AppointmentStatus
impl Unpin for AppointmentStatus
impl UnwindSafe for AppointmentStatus
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