pub enum IndexStateKind {
Building,
Ready,
Degraded,
}Expand description
Coarse index state kinds for instrumentation and transition tracking.
Variants§
Building
Index is being built.
Ready
Index is ready for full queries.
Degraded
Index is degraded and serving partial results.
Trait Implementations§
Source§impl Clone for IndexStateKind
impl Clone for IndexStateKind
Source§fn clone(&self) -> IndexStateKind
fn clone(&self) -> IndexStateKind
Returns a duplicate of the value. Read more
1.0.0 · 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 IndexStateKind
impl Debug for IndexStateKind
Source§impl Hash for IndexStateKind
impl Hash for IndexStateKind
Source§impl PartialEq for IndexStateKind
impl PartialEq for IndexStateKind
impl Copy for IndexStateKind
impl Eq for IndexStateKind
impl StructuralPartialEq for IndexStateKind
Auto Trait Implementations§
impl Freeze for IndexStateKind
impl RefUnwindSafe for IndexStateKind
impl Send for IndexStateKind
impl Sync for IndexStateKind
impl Unpin for IndexStateKind
impl UnsafeUnpin for IndexStateKind
impl UnwindSafe for IndexStateKind
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.