pub enum Ending<'a> {
Approved,
OutOfRounds,
Deadlocked(&'a [Finding]),
}Expand description
How the run ended, which is the only thing about the run a reader needs.
Variants§
Approved
Nothing blocks a merge.
OutOfRounds
The round budget ran out. The last round’s fixes were pushed but never reviewed, which is the part a maintainer has to know.
Deadlocked(&'a [Finding])
A point was refuted and raised again anyway. Nobody is going to break the tie but a person.
Auto Trait Implementations§
impl<'a> Freeze for Ending<'a>
impl<'a> RefUnwindSafe for Ending<'a>
impl<'a> Send for Ending<'a>
impl<'a> Sync for Ending<'a>
impl<'a> Unpin for Ending<'a>
impl<'a> UnsafeUnpin for Ending<'a>
impl<'a> UnwindSafe for Ending<'a>
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