pub enum CollectionHealthStatus {
Healthy,
Degraded,
Unhealthy,
Closed,
}Expand description
Readiness assessment for one collection handle.
Variants§
Healthy
The authoritative and derived generations agree and every configured index is complete.
Degraded
Authoritative storage is usable, but at least one derived index is incomplete, missing, or stale.
Unhealthy
The in-memory and durable authoritative revisions disagree.
Closed
The shared collection handle has been closed.
Trait Implementations§
Source§impl Clone for CollectionHealthStatus
impl Clone for CollectionHealthStatus
impl Copy for CollectionHealthStatus
Source§impl Debug for CollectionHealthStatus
impl Debug for CollectionHealthStatus
Source§impl<'de> Deserialize<'de> for CollectionHealthStatus
impl<'de> Deserialize<'de> for CollectionHealthStatus
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 CollectionHealthStatus
Source§impl PartialEq for CollectionHealthStatus
impl PartialEq for CollectionHealthStatus
Source§impl Serialize for CollectionHealthStatus
impl Serialize for CollectionHealthStatus
impl StructuralPartialEq for CollectionHealthStatus
Auto Trait Implementations§
impl Freeze for CollectionHealthStatus
impl RefUnwindSafe for CollectionHealthStatus
impl Send for CollectionHealthStatus
impl Sync for CollectionHealthStatus
impl Unpin for CollectionHealthStatus
impl UnsafeUnpin for CollectionHealthStatus
impl UnwindSafe for CollectionHealthStatus
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more