pub enum Status {
Reported,
NeedsManagerReview,
InvestigationOpen,
CustomerMessageReview,
Resolved,
Closed,
Reopened,
LegalHold,
}Expand description
Review lifecycle for incidents as they move from source report to resolution.
Variants§
Reported
Reported incident category for safety and customer follow-up.
NeedsManagerReview
Needs manager review incident category for safety and customer follow-up.
InvestigationOpen
Investigation open incident category for safety and customer follow-up.
CustomerMessageReview
Customer message review incident category for safety and customer follow-up.
Resolved
Owner-pet relationship was matched to a single confident record.
Closed
Closed incident category for safety and customer follow-up.
Reopened
Reopened incident category for safety and customer follow-up.
LegalHold
Legal hold incident category for safety and customer follow-up.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Status
impl<'de> Deserialize<'de> for Status
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 Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnsafeUnpin for Status
impl UnwindSafe for Status
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