pub enum StayField {
Id,
PetRecordId,
LocationRecordId,
Status,
}Expand description
Stay/read-model fields checked before analytics and labor views trust a record.
Variants§
Id
Stay id is missing, so analytics cannot safely join or deduplicate the projected fact.
PetRecordId
Pet record id is missing or ambiguous, blocking care, vaccine, and temperament confidence.
LocationRecordId
Location record id is missing or ambiguous, blocking resort-specific labor and capacity reporting.
Status
Status value is missing, conflicting, or unmapped, so workflow state must be reviewed.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StayField
impl<'de> Deserialize<'de> for StayField
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 StayField
impl Eq for StayField
impl StructuralPartialEq for StayField
Auto Trait Implementations§
impl Freeze for StayField
impl RefUnwindSafe for StayField
impl Send for StayField
impl Sync for StayField
impl Unpin for StayField
impl UnsafeUnpin for StayField
impl UnwindSafe for StayField
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