pub enum ProgressMetricType {
TaskCompletion,
MilestoneProgress,
FeatureProgress,
DocumentationProgress,
Custom(String),
}Expand description
Types of progress metrics
Variants§
TaskCompletion
Task completion percentage
MilestoneProgress
Milestone progress
FeatureProgress
Feature implementation status
DocumentationProgress
Documentation completeness
Custom(String)
Custom metric
Trait Implementations§
Source§impl Clone for ProgressMetricType
impl Clone for ProgressMetricType
Source§fn clone(&self) -> ProgressMetricType
fn clone(&self) -> ProgressMetricType
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 moreAuto Trait Implementations§
impl Freeze for ProgressMetricType
impl RefUnwindSafe for ProgressMetricType
impl Send for ProgressMetricType
impl Sync for ProgressMetricType
impl Unpin for ProgressMetricType
impl UnwindSafe for ProgressMetricType
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