pub enum CareSensitivity {
NoKnownCareConflict,
SupplementOrDietReviewRequired,
CarePlanConflict,
}Expand description
Care-sensitivity status that decides whether supplement/diet/product recommendations need care or manager review.
Variants§
NoKnownCareConflict
No care conflict is known, so the candidate can remain an internal draft if other gates pass.
SupplementOrDietReviewRequired
Supplement or diet item must pause for medical-document review before staff use or customer copy.
CarePlanConflict
Pet care plan conflicts with the suggested product and requires manager review.
Trait Implementations§
Source§impl Clone for CareSensitivity
impl Clone for CareSensitivity
Source§fn clone(&self) -> CareSensitivity
fn clone(&self) -> CareSensitivity
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 CareSensitivity
impl Debug for CareSensitivity
Source§impl<'de> Deserialize<'de> for CareSensitivity
impl<'de> Deserialize<'de> for CareSensitivity
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 CareSensitivity
impl PartialEq for CareSensitivity
Source§impl Serialize for CareSensitivity
impl Serialize for CareSensitivity
impl Copy for CareSensitivity
impl Eq for CareSensitivity
impl StructuralPartialEq for CareSensitivity
Auto Trait Implementations§
impl Freeze for CareSensitivity
impl RefUnwindSafe for CareSensitivity
impl Send for CareSensitivity
impl Sync for CareSensitivity
impl Unpin for CareSensitivity
impl UnsafeUnpin for CareSensitivity
impl UnwindSafe for CareSensitivity
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