pub enum EstimateConfidence {
High,
Medium,
Low,
UnknownRequiresReview,
}Expand description
Confidence level assigned to a grooming duration estimate.
Variants§
High
Estimate is reliable enough for normal scheduling.
Medium
Estimate is usable but should be treated with moderate uncertainty.
Low
Estimate is uncertain and may require staff confirmation.
UnknownRequiresReview
Estimate confidence is unknown and must be reviewed.
Trait Implementations§
Source§impl Clone for EstimateConfidence
impl Clone for EstimateConfidence
Source§fn clone(&self) -> EstimateConfidence
fn clone(&self) -> EstimateConfidence
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 EstimateConfidence
impl Debug for EstimateConfidence
Source§impl<'de> Deserialize<'de> for EstimateConfidence
impl<'de> Deserialize<'de> for EstimateConfidence
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 EstimateConfidence
impl PartialEq for EstimateConfidence
Source§impl Serialize for EstimateConfidence
impl Serialize for EstimateConfidence
impl Copy for EstimateConfidence
impl Eq for EstimateConfidence
impl StructuralPartialEq for EstimateConfidence
Auto Trait Implementations§
impl Freeze for EstimateConfidence
impl RefUnwindSafe for EstimateConfidence
impl Send for EstimateConfidence
impl Sync for EstimateConfidence
impl Unpin for EstimateConfidence
impl UnsafeUnpin for EstimateConfidence
impl UnwindSafe for EstimateConfidence
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