pub enum ConfidenceState {
Active,
Decaying,
Revalidating,
Demoted,
Quarantined,
}Expand description
Current confidence lifecycle state of a reusable asset.
Variants§
Active
Asset is healthy and eligible for replay.
Decaying
Asset confidence has decayed below the warning threshold; still eligible but flagged for revalidation.
Revalidating
Asset is undergoing shadow-mode replay revalidation; normal reuse continues but evidence is accumulated.
Demoted
Asset has been demoted after failed reuse; replay is suspended pending explicit re-promotion.
Quarantined
Asset is quarantined after repeated failures; replay is blocked until explicit triage clears it.
Trait Implementations§
Source§impl Clone for ConfidenceState
impl Clone for ConfidenceState
Source§fn clone(&self) -> ConfidenceState
fn clone(&self) -> ConfidenceState
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 ConfidenceState
impl Debug for ConfidenceState
Source§impl<'de> Deserialize<'de> for ConfidenceState
impl<'de> Deserialize<'de> for ConfidenceState
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
Source§impl PartialEq for ConfidenceState
impl PartialEq for ConfidenceState
Source§impl Serialize for ConfidenceState
impl Serialize for ConfidenceState
impl Copy for ConfidenceState
impl Eq for ConfidenceState
impl StructuralPartialEq for ConfidenceState
Auto Trait Implementations§
impl Freeze for ConfidenceState
impl RefUnwindSafe for ConfidenceState
impl Send for ConfidenceState
impl Sync for ConfidenceState
impl Unpin for ConfidenceState
impl UnsafeUnpin for ConfidenceState
impl UnwindSafe for ConfidenceState
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