pub enum CustomerMessageReadiness {
NoMessageNeeded,
DraftNeedsApproval,
}Expand description
Approval status for daycare customer-message drafts.
Variants§
NoMessageNeeded
No customer-facing message is required for this check-in path.
DraftNeedsApproval
A drafted customer message must be approved before it is sent or used.
Trait Implementations§
Source§impl Clone for CustomerMessageReadiness
impl Clone for CustomerMessageReadiness
Source§fn clone(&self) -> CustomerMessageReadiness
fn clone(&self) -> CustomerMessageReadiness
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 CustomerMessageReadiness
impl Debug for CustomerMessageReadiness
Source§impl<'de> Deserialize<'de> for CustomerMessageReadiness
impl<'de> Deserialize<'de> for CustomerMessageReadiness
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 CustomerMessageReadiness
impl PartialEq for CustomerMessageReadiness
Source§impl Serialize for CustomerMessageReadiness
impl Serialize for CustomerMessageReadiness
impl Copy for CustomerMessageReadiness
impl Eq for CustomerMessageReadiness
impl StructuralPartialEq for CustomerMessageReadiness
Auto Trait Implementations§
impl Freeze for CustomerMessageReadiness
impl RefUnwindSafe for CustomerMessageReadiness
impl Send for CustomerMessageReadiness
impl Sync for CustomerMessageReadiness
impl Unpin for CustomerMessageReadiness
impl UnsafeUnpin for CustomerMessageReadiness
impl UnwindSafe for CustomerMessageReadiness
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