pub enum PetProfileCompleteness {
Complete,
MissingRequiredFields,
}Expand description
Classifies pet profile completeness values that drive the booking-readiness workflow.
Variants§
Complete
Routes booking triage work flagged as complete to the right queue, review gate, or agent packet.
MissingRequiredFields
Routes booking triage work flagged as missing required fields to the right queue, review gate, or agent packet.
Trait Implementations§
Source§impl Clone for PetProfileCompleteness
impl Clone for PetProfileCompleteness
Source§fn clone(&self) -> PetProfileCompleteness
fn clone(&self) -> PetProfileCompleteness
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 PetProfileCompleteness
impl Debug for PetProfileCompleteness
Source§impl<'de> Deserialize<'de> for PetProfileCompleteness
impl<'de> Deserialize<'de> for PetProfileCompleteness
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 PetProfileCompleteness
impl PartialEq for PetProfileCompleteness
Source§impl Serialize for PetProfileCompleteness
impl Serialize for PetProfileCompleteness
impl Eq for PetProfileCompleteness
impl StructuralPartialEq for PetProfileCompleteness
Auto Trait Implementations§
impl Freeze for PetProfileCompleteness
impl RefUnwindSafe for PetProfileCompleteness
impl Send for PetProfileCompleteness
impl Sync for PetProfileCompleteness
impl Unpin for PetProfileCompleteness
impl UnsafeUnpin for PetProfileCompleteness
impl UnwindSafe for PetProfileCompleteness
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