pub enum DifferentialVerdict {
Clean,
InteractionFailure,
InconclusiveParentFailure,
}Expand description
Closed set of D23 classifications accepted from the runner.
Variants§
Clean
Both parents and the merge passed.
InteractionFailure
Both parents passed and the merge failed.
InconclusiveParentFailure
At least one parent failed.
Implementations§
Trait Implementations§
Source§impl Clone for DifferentialVerdict
impl Clone for DifferentialVerdict
Source§fn clone(&self) -> DifferentialVerdict
fn clone(&self) -> DifferentialVerdict
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 DifferentialVerdict
impl Debug for DifferentialVerdict
Source§impl PartialEq for DifferentialVerdict
impl PartialEq for DifferentialVerdict
Source§fn eq(&self, other: &DifferentialVerdict) -> bool
fn eq(&self, other: &DifferentialVerdict) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DifferentialVerdict
impl Eq for DifferentialVerdict
impl StructuralPartialEq for DifferentialVerdict
Auto Trait Implementations§
impl Freeze for DifferentialVerdict
impl RefUnwindSafe for DifferentialVerdict
impl Send for DifferentialVerdict
impl Sync for DifferentialVerdict
impl Unpin for DifferentialVerdict
impl UnsafeUnpin for DifferentialVerdict
impl UnwindSafe for DifferentialVerdict
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