pub enum SupportCaseStatus {
Opened,
WaitingOnCustomer,
WaitingOnInternal,
Escalated,
Resolved,
Closed,
}Variants§
Trait Implementations§
Source§impl Clone for SupportCaseStatus
impl Clone for SupportCaseStatus
Source§fn clone(&self) -> SupportCaseStatus
fn clone(&self) -> SupportCaseStatus
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 moreSource§impl Debug for SupportCaseStatus
impl Debug for SupportCaseStatus
Source§impl PartialEq for SupportCaseStatus
impl PartialEq for SupportCaseStatus
Source§fn eq(&self, other: &SupportCaseStatus) -> bool
fn eq(&self, other: &SupportCaseStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SupportCaseStatus
impl Eq for SupportCaseStatus
impl StructuralPartialEq for SupportCaseStatus
Auto Trait Implementations§
impl Freeze for SupportCaseStatus
impl RefUnwindSafe for SupportCaseStatus
impl Send for SupportCaseStatus
impl Sync for SupportCaseStatus
impl Unpin for SupportCaseStatus
impl UnsafeUnpin for SupportCaseStatus
impl UnwindSafe for SupportCaseStatus
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