pub enum ChangeSeverity {
Info,
Warning,
Breaking,
}Expand description
Severity classification for a schema change.
Variants§
Info
Additive change — new predicate, domain, or rule.
Warning
Potentially risky change — rename or structural shift.
Breaking
Breaking change — removal or arity change.
Implementations§
Source§impl ChangeSeverity
impl ChangeSeverity
Sourcepub fn from_change(change: &SchemaChange) -> Self
pub fn from_change(change: &SchemaChange) -> Self
Derive the severity from a SchemaChange.
Trait Implementations§
Source§impl Clone for ChangeSeverity
impl Clone for ChangeSeverity
Source§fn clone(&self) -> ChangeSeverity
fn clone(&self) -> ChangeSeverity
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 ChangeSeverity
impl Debug for ChangeSeverity
Source§impl Ord for ChangeSeverity
impl Ord for ChangeSeverity
Source§fn cmp(&self, other: &ChangeSeverity) -> Ordering
fn cmp(&self, other: &ChangeSeverity) -> 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 ChangeSeverity
impl PartialEq for ChangeSeverity
Source§impl PartialOrd for ChangeSeverity
impl PartialOrd for ChangeSeverity
impl Eq for ChangeSeverity
impl StructuralPartialEq for ChangeSeverity
Auto Trait Implementations§
impl Freeze for ChangeSeverity
impl RefUnwindSafe for ChangeSeverity
impl Send for ChangeSeverity
impl Sync for ChangeSeverity
impl Unpin for ChangeSeverity
impl UnsafeUnpin for ChangeSeverity
impl UnwindSafe for ChangeSeverity
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.