pub enum ProjectionHealth {
Healthy,
Stale,
Missing,
Rebuilding,
ImportLagging,
ImportFailed,
}Expand description
Health status of a projection.
Variants§
Healthy
Projection is current and healthy.
Stale
Projection exists but may be stale.
Missing
Projection is missing or failed to build.
Rebuilding
Reserved compatibility state for external rebuild orchestration.
The in-memory tracker does not currently emit this variant on its own.
ImportLagging
Reserved compatibility state for import-aware callers.
The runtime currently surfaces import freshness as ProjectionImportStale
warnings in query traces rather than transitioning tracker health here.
ImportFailed
Reserved compatibility state for import-aware callers.
The tracker does not currently transition into this state.
Trait Implementations§
Source§impl Clone for ProjectionHealth
impl Clone for ProjectionHealth
Source§fn clone(&self) -> ProjectionHealth
fn clone(&self) -> ProjectionHealth
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 ProjectionHealth
impl Debug for ProjectionHealth
Source§impl<'de> Deserialize<'de> for ProjectionHealth
impl<'de> Deserialize<'de> for ProjectionHealth
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ProjectionHealth
Source§impl PartialEq for ProjectionHealth
impl PartialEq for ProjectionHealth
Source§fn eq(&self, other: &ProjectionHealth) -> bool
fn eq(&self, other: &ProjectionHealth) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectionHealth
impl Serialize for ProjectionHealth
impl StructuralPartialEq for ProjectionHealth
Auto Trait Implementations§
impl Freeze for ProjectionHealth
impl RefUnwindSafe for ProjectionHealth
impl Send for ProjectionHealth
impl Sync for ProjectionHealth
impl Unpin for ProjectionHealth
impl UnsafeUnpin for ProjectionHealth
impl UnwindSafe for ProjectionHealth
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,
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.