pub enum Verdict {
Clean,
InteractionFailure,
InconclusiveParentFailure,
}Expand description
What the three executions establish about the merge.
Variants§
Clean
Both parents and the merge passed this command.
InteractionFailure
Both parents passed and only the merge failed.
InconclusiveParentFailure
At least one parent failed, so the merge cannot be blamed.
Implementations§
Trait Implementations§
impl Copy for Verdict
impl Eq for Verdict
impl StructuralPartialEq for Verdict
Auto Trait Implementations§
impl Freeze for Verdict
impl RefUnwindSafe for Verdict
impl Send for Verdict
impl Sync for Verdict
impl Unpin for Verdict
impl UnsafeUnpin for Verdict
impl UnwindSafe for Verdict
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