pub enum Cadence {
EveryWeeks(CadenceWeeks),
AsNeeded,
GroomerRecommended,
Unknown,
}Expand description
Rebooking cadence source used for due-date prompts and groomer-recommended follow-up.
Variants§
EveryWeeks(CadenceWeeks)
Staff can see the every weeks grooming state during grooming scheduling, estimate, history, rebooking, reminder, or review work.
AsNeeded
Staff can see the as needed grooming state during grooming scheduling, estimate, history, rebooking, reminder, or review work.
GroomerRecommended
Staff can see the groomer recommended grooming state during grooming scheduling, estimate, history, rebooking, reminder, or review work.
Unknown
Provider role or status could not be mapped confidently.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cadence
impl<'de> Deserialize<'de> for Cadence
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 Cadence
impl Eq for Cadence
impl StructuralPartialEq for Cadence
Auto Trait Implementations§
impl Freeze for Cadence
impl RefUnwindSafe for Cadence
impl Send for Cadence
impl Sync for Cadence
impl Unpin for Cadence
impl UnsafeUnpin for Cadence
impl UnwindSafe for Cadence
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