pub enum PendingOp {
Gate,
Ungate,
MarkDone,
}Expand description
Mutating operation on a pending item — used by the state-transition matrix.
MarkDone is referenced by the matrix tests and reserved for the op_done
migration path (Phase 3); it is not yet wired through the CLI primitives,
which keep the unconditional op_done semantics from Phase 1.
Variants§
Gate
[ ] → [/] — code-complete, awaiting external gate.
Ungate
[/] → [ ] — return a gated item to active.
MarkDone
[ ] | [/] → [x] — fully complete.
Trait Implementations§
impl Copy for PendingOp
impl Eq for PendingOp
impl StructuralPartialEq for PendingOp
Auto Trait Implementations§
impl Freeze for PendingOp
impl RefUnwindSafe for PendingOp
impl Send for PendingOp
impl Sync for PendingOp
impl Unpin for PendingOp
impl UnsafeUnpin for PendingOp
impl UnwindSafe for PendingOp
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> 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.