pub enum IterationVerdict {
Clean,
RepairsNeeded,
Inconclusive,
}Expand description
The verdict a reviewer/verifier pair produced for one iteration.
Variants§
Clean
Review and verification both passed. The loop may finish.
RepairsNeeded
Findings remain; another repair iteration is warranted.
Inconclusive
The reviewer refused to judge (missing input, tool failure, …). The loop stops rather than treating an absent judgment as a pass.
Trait Implementations§
Source§impl Clone for IterationVerdict
impl Clone for IterationVerdict
Source§fn clone(&self) -> IterationVerdict
fn clone(&self) -> IterationVerdict
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 IterationVerdict
Source§impl Debug for IterationVerdict
impl Debug for IterationVerdict
Source§impl<'de> Deserialize<'de> for IterationVerdict
impl<'de> Deserialize<'de> for IterationVerdict
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 IterationVerdict
Source§impl PartialEq for IterationVerdict
impl PartialEq for IterationVerdict
Source§impl Serialize for IterationVerdict
impl Serialize for IterationVerdict
impl StructuralPartialEq for IterationVerdict
Auto Trait Implementations§
impl Freeze for IterationVerdict
impl RefUnwindSafe for IterationVerdict
impl Send for IterationVerdict
impl Sync for IterationVerdict
impl Unpin for IterationVerdict
impl UnsafeUnpin for IterationVerdict
impl UnwindSafe for IterationVerdict
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