pub enum Outcome {
Pending,
Accepted,
Rejected,
Contested,
}Expand description
A token’s judged outcome, derived from the accepted/rejected
stage counts (doc 19 §4.1): the verdict IS the stage, so the log
stays payload-free (I-1) and this derivation is a pure function of
counts — order-free, replay-stable (R-1).
Variants§
Pending
No judge has recorded a verdict.
Accepted
At least one accepted, no rejected.
Rejected
At least one rejected, no accepted.
Contested
Both were recorded — surfaced honestly for the orchestrator to resolve (re-judge, or supersede and re-delegate).
Trait Implementations§
impl Copy for Outcome
impl Eq for Outcome
impl StructuralPartialEq for Outcome
Auto Trait Implementations§
impl Freeze for Outcome
impl RefUnwindSafe for Outcome
impl Send for Outcome
impl Sync for Outcome
impl Unpin for Outcome
impl UnsafeUnpin for Outcome
impl UnwindSafe for Outcome
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