pub enum EvaluationState {
Pending,
Evaluating,
Verdict(EvaluationVerdict),
Stale,
Rework,
}Expand description
Lifecycle of an evaluation report.
Variants§
Pending
Claim is awaiting an independent evaluator.
Evaluating
Evaluator is inspecting the exact subject.
Verdict(EvaluationVerdict)
A report has been accepted for the current subject.
Stale
Subject changed after a report and the prior verdict no longer certifies it.
Rework
Rework is required before a new claim can be submitted.
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 JsonSchema for EvaluationState
impl JsonSchema for EvaluationState
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§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