pub enum Settled {
Refuted,
Filed,
Dropped,
Fixed,
}Expand description
How a point stands, one round to the next.
Three of these are endings: the code will not change for the point here,
so raising it again only spends a round. They do not mean the same thing
to a person, which is why Dropped is not folded into Filed: only
Filed promises that somewhere holds the point.
Fixed is not an ending. The code changed, the change is the author’s
claim about the point, and nothing has checked it. It is here because the
ledger is the only thing a later round reads, and recording nothing for a
fix left it holding only the points the reviewer lost. Six fix rounds
across two pull requests produced no entry at all, and the guard that
ends an argument had nothing to match.
Variants§
Implementations§
Trait Implementations§
impl Copy for Settled
Source§impl<'de> Deserialize<'de> for Settled
impl<'de> Deserialize<'de> for Settled
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Settled
Source§impl Ord for Settled
impl Ord for Settled
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialOrd for Settled
impl PartialOrd for Settled
impl StructuralPartialEq for Settled
Auto Trait Implementations§
impl Freeze for Settled
impl RefUnwindSafe for Settled
impl Send for Settled
impl Sync for Settled
impl Unpin for Settled
impl UnsafeUnpin for Settled
impl UnwindSafe for Settled
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.