pub enum OwnerPetRelationship {
Resolved,
Ambiguous {
candidate_count: u16,
},
}Expand description
Confidence in the provider relationship between an owner and pet.
Variants§
Resolved
Owner-pet relationship was matched to a single confident record.
Ambiguous
Number of provider records that could match this relationship.
Trait Implementations§
Source§impl Clone for OwnerPetRelationship
impl Clone for OwnerPetRelationship
Source§fn clone(&self) -> OwnerPetRelationship
fn clone(&self) -> OwnerPetRelationship
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 OwnerPetRelationship
impl Debug for OwnerPetRelationship
Source§impl<'de> Deserialize<'de> for OwnerPetRelationship
impl<'de> Deserialize<'de> for OwnerPetRelationship
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 From<OwnerPetRelationship> for OwnerPetRelationship
impl From<OwnerPetRelationship> for OwnerPetRelationship
Source§fn from(value: OwnerPetRelationship) -> Self
fn from(value: OwnerPetRelationship) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OwnerPetRelationship
impl PartialEq for OwnerPetRelationship
Source§impl Serialize for OwnerPetRelationship
impl Serialize for OwnerPetRelationship
impl Copy for OwnerPetRelationship
impl Eq for OwnerPetRelationship
impl StructuralPartialEq for OwnerPetRelationship
Auto Trait Implementations§
impl Freeze for OwnerPetRelationship
impl RefUnwindSafe for OwnerPetRelationship
impl Send for OwnerPetRelationship
impl Sync for OwnerPetRelationship
impl Unpin for OwnerPetRelationship
impl UnsafeUnpin for OwnerPetRelationship
impl UnwindSafe for OwnerPetRelationship
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