pub enum GateReason {
MissingFeedingInstruction,
MedicationRequiresReview,
}Expand description
Reasons a boarding care plan requires staff or medical-document review.
Variants§
MissingFeedingInstruction
The source care profile lacks feeding instructions for the boarding stay.
MedicationRequiresReview
At least one medication instruction requires staff or medical-document review.
Trait Implementations§
Source§impl Clone for GateReason
impl Clone for GateReason
Source§fn clone(&self) -> GateReason
fn clone(&self) -> GateReason
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 GateReason
impl Debug for GateReason
Source§impl<'de> Deserialize<'de> for GateReason
impl<'de> Deserialize<'de> for GateReason
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 GateReason
impl PartialEq for GateReason
Source§impl Serialize for GateReason
impl Serialize for GateReason
impl Copy for GateReason
impl Eq for GateReason
impl StructuralPartialEq for GateReason
Auto Trait Implementations§
impl Freeze for GateReason
impl RefUnwindSafe for GateReason
impl Send for GateReason
impl Sync for GateReason
impl Unpin for GateReason
impl UnsafeUnpin for GateReason
impl UnwindSafe for GateReason
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