pub enum EvaluationState {
Complete,
Partial,
NotEvaluated,
}Expand description
How much applicable work was evaluated.
Variants§
Complete
All modelled work completed.
Partial
Some modelled work completed and some has a typed coverage gap.
NotEvaluated
No applicable work was evaluated.
Trait Implementations§
Source§impl Clone for EvaluationState
impl Clone for EvaluationState
Source§fn clone(&self) -> EvaluationState
fn clone(&self) -> EvaluationState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EvaluationState
Source§impl Debug for EvaluationState
impl Debug for EvaluationState
Source§impl<'de> Deserialize<'de> for EvaluationState
impl<'de> Deserialize<'de> for EvaluationState
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 Eq for EvaluationState
Source§impl PartialEq for EvaluationState
impl PartialEq for EvaluationState
Source§impl Serialize for EvaluationState
impl Serialize for EvaluationState
impl StructuralPartialEq for EvaluationState
Auto Trait Implementations§
impl Freeze for EvaluationState
impl RefUnwindSafe for EvaluationState
impl Send for EvaluationState
impl Sync for EvaluationState
impl Unpin for EvaluationState
impl UnsafeUnpin for EvaluationState
impl UnwindSafe for EvaluationState
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