pub enum DeltaSeverity {
Clean,
Advisory,
Warning,
Critical,
}Expand description
Severity tier attached to a delta by its source.
The tier is a coarse label — the deterministic
weight field is the value the classifier actually
quantises against. The tier is preserved on the emitted
ChangeEvent so
downstream runbook consumers do not have to invert the
weight to recover the source’s intent.
Variants§
Clean
Source signal is clean / below the documented floor; nothing to act on.
Advisory
Source signal is in the advisory band; the source crate recommends watching the target.
Warning
Source signal is in the warning band; the source crate recommends an active response.
Critical
Source signal is in the critical band; the source crate has triggered its own hard-gate or emergency path.
Implementations§
Trait Implementations§
Source§impl Clone for DeltaSeverity
impl Clone for DeltaSeverity
Source§fn clone(&self) -> DeltaSeverity
fn clone(&self) -> DeltaSeverity
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 DeltaSeverity
impl Debug for DeltaSeverity
Source§impl<'de> Deserialize<'de> for DeltaSeverity
impl<'de> Deserialize<'de> for DeltaSeverity
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 Hash for DeltaSeverity
impl Hash for DeltaSeverity
Source§impl Ord for DeltaSeverity
impl Ord for DeltaSeverity
Source§fn cmp(&self, other: &DeltaSeverity) -> Ordering
fn cmp(&self, other: &DeltaSeverity) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeltaSeverity
impl PartialEq for DeltaSeverity
Source§impl PartialOrd for DeltaSeverity
impl PartialOrd for DeltaSeverity
Source§impl Serialize for DeltaSeverity
impl Serialize for DeltaSeverity
impl Copy for DeltaSeverity
impl Eq for DeltaSeverity
impl StructuralPartialEq for DeltaSeverity
Auto Trait Implementations§
impl Freeze for DeltaSeverity
impl RefUnwindSafe for DeltaSeverity
impl Send for DeltaSeverity
impl Sync for DeltaSeverity
impl Unpin for DeltaSeverity
impl UnsafeUnpin for DeltaSeverity
impl UnwindSafe for DeltaSeverity
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.