pub enum RefutationArtifactOutcome {
Passed,
Failed {
reason: String,
},
Inconclusive {
reason: String,
},
Skipped {
reason: String,
},
}Expand description
Outcome of a named refutation artifact.
Variants§
Passed
Refutation did not weaken the original claim.
Failed
Refutation produced an explicit failure signal.
Inconclusive
Refutation could not complete.
Skipped
Refutation was intentionally skipped.
Trait Implementations§
Source§impl Clone for RefutationArtifactOutcome
impl Clone for RefutationArtifactOutcome
Source§fn clone(&self) -> RefutationArtifactOutcome
fn clone(&self) -> RefutationArtifactOutcome
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 moreSource§impl Debug for RefutationArtifactOutcome
impl Debug for RefutationArtifactOutcome
Source§impl<'de> Deserialize<'de> for RefutationArtifactOutcome
impl<'de> Deserialize<'de> for RefutationArtifactOutcome
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
Auto Trait Implementations§
impl Freeze for RefutationArtifactOutcome
impl RefUnwindSafe for RefutationArtifactOutcome
impl Send for RefutationArtifactOutcome
impl Sync for RefutationArtifactOutcome
impl Unpin for RefutationArtifactOutcome
impl UnsafeUnpin for RefutationArtifactOutcome
impl UnwindSafe for RefutationArtifactOutcome
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