pub enum SdkState {
Bootstrapping,
Ready,
Degraded,
}Expand description
Represents the operational health and readiness of the SDK.
Variants§
Bootstrapping
The manager is initializing and attempting to load data.
Ready
The manager is fully hydrated and operating normally.
Degraded
The manager failed to hydrate and is running in Circuit Breaker mode.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SdkState
impl<'de> Deserialize<'de> for SdkState
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 Copy for SdkState
impl Eq for SdkState
impl StructuralPartialEq for SdkState
Auto Trait Implementations§
impl Freeze for SdkState
impl RefUnwindSafe for SdkState
impl Send for SdkState
impl Sync for SdkState
impl Unpin for SdkState
impl UnsafeUnpin for SdkState
impl UnwindSafe for SdkState
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.