pub enum NodeStatus {
Sentinel,
Pending,
Dirty,
Settled,
Resolved,
Completed,
Errored,
}Expand description
Canonical Appendix B status enum.
Variants§
Sentinel
State node with sentinel cache (never had a value).
Pending
Compute node that has not yet fired (first-run gate not satisfied).
Dirty
DIRTY queued; tier-3 settle has not flushed yet.
Settled
Has a value, no terminal, no DIRTY pending.
Resolved
Same as Settled for static descriptors — wave-internal
“resolved-this-wave” doesn’t survive flush. Reserved for
reactive-describe later.
Completed
Terminated via [COMPLETE].
Errored
Terminated via [ERROR, h].
Trait Implementations§
Source§impl Clone for NodeStatus
impl Clone for NodeStatus
Source§fn clone(&self) -> NodeStatus
fn clone(&self) -> NodeStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NodeStatus
impl Debug for NodeStatus
Source§impl PartialEq for NodeStatus
impl PartialEq for NodeStatus
Source§fn eq(&self, other: &NodeStatus) -> bool
fn eq(&self, other: &NodeStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodeStatus
impl Serialize for NodeStatus
impl Copy for NodeStatus
impl Eq for NodeStatus
impl StructuralPartialEq for NodeStatus
Auto Trait Implementations§
impl Freeze for NodeStatus
impl RefUnwindSafe for NodeStatus
impl Send for NodeStatus
impl Sync for NodeStatus
impl Unpin for NodeStatus
impl UnsafeUnpin for NodeStatus
impl UnwindSafe for NodeStatus
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.