pub enum Cadence {
EveryWeeks(CadenceWeeks),
AsNeeded,
GroomerRecommended,
Unknown,
}Expand description
Decision vocabulary for cadence in grooming workflows.
Variants§
EveryWeeks(CadenceWeeks)
Every weeks grooming operational signal for schedule, estimate, history, or review handling.
AsNeeded
As needed grooming operational signal for schedule, estimate, history, or review handling.
GroomerRecommended
Groomer recommended grooming operational signal for schedule, estimate, history, or review handling.
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