pub enum ProviderStatus {
NotReady,
Ready,
Error,
STALE,
}
Expand description
The status of a feature provider.
Variants§
NotReady
The provider has not been initialized.
Ready
The provider has been initialized, and is able to reliably resolve flag values.
Error
The provider is initialized but is not able to reliably resolve flag values.
STALE
The provider’s cached state is no longer valid and may not be up-to-date with the source of truth.
Trait Implementations§
Source§impl Debug for ProviderStatus
impl Debug for ProviderStatus
Source§impl Default for ProviderStatus
impl Default for ProviderStatus
Source§fn default() -> ProviderStatus
fn default() -> ProviderStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProviderStatus
impl PartialEq for ProviderStatus
impl Eq for ProviderStatus
impl StructuralPartialEq for ProviderStatus
Auto Trait Implementations§
impl Freeze for ProviderStatus
impl RefUnwindSafe for ProviderStatus
impl Send for ProviderStatus
impl Sync for ProviderStatus
impl Unpin for ProviderStatus
impl UnwindSafe for ProviderStatus
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