pub enum ServiceJobStatus {
NotServiced,
Cancelled,
Completed,
PendingSchedule,
NotFulfillable,
Hold,
PaymentDeclined,
}Expand description
The status of the service job.
Variants§
Trait Implementations§
Source§impl Clone for ServiceJobStatus
impl Clone for ServiceJobStatus
Source§fn clone(&self) -> ServiceJobStatus
fn clone(&self) -> ServiceJobStatus
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 ServiceJobStatus
impl Debug for ServiceJobStatus
Source§impl Default for ServiceJobStatus
impl Default for ServiceJobStatus
Source§fn default() -> ServiceJobStatus
fn default() -> ServiceJobStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceJobStatus
impl<'de> Deserialize<'de> for ServiceJobStatus
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 ServiceJobStatus
impl Hash for ServiceJobStatus
Source§impl Ord for ServiceJobStatus
impl Ord for ServiceJobStatus
Source§fn cmp(&self, other: &ServiceJobStatus) -> Ordering
fn cmp(&self, other: &ServiceJobStatus) -> 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 ServiceJobStatus
impl PartialEq for ServiceJobStatus
Source§impl PartialOrd for ServiceJobStatus
impl PartialOrd for ServiceJobStatus
Source§impl Serialize for ServiceJobStatus
impl Serialize for ServiceJobStatus
impl Copy for ServiceJobStatus
impl Eq for ServiceJobStatus
impl StructuralPartialEq for ServiceJobStatus
Auto Trait Implementations§
impl Freeze for ServiceJobStatus
impl RefUnwindSafe for ServiceJobStatus
impl Send for ServiceJobStatus
impl Sync for ServiceJobStatus
impl Unpin for ServiceJobStatus
impl UnwindSafe for ServiceJobStatus
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