pub enum ErrorSeverity {
Info,
Low,
Medium,
High,
Critical,
}๐Deprecated:
Will be extracted to mockforge-workspace crate
Expand description
Error severity levels for encryption operations
Variantsยง
Info
๐Deprecated:
Will be extracted to mockforge-workspace crate
Informational messages (non-fatal)
Low
๐Deprecated:
Will be extracted to mockforge-workspace crate
Low severity errors (minor issues)
Medium
๐Deprecated:
Will be extracted to mockforge-workspace crate
Medium severity errors (issues that should be addressed)
High
๐Deprecated:
Will be extracted to mockforge-workspace crate
High severity errors (significant problems)
Critical
๐Deprecated:
Will be extracted to mockforge-workspace crate
Critical severity errors (blocks operation)
Trait Implementationsยง
Sourceยงimpl Clone for ErrorSeverity
impl Clone for ErrorSeverity
Sourceยงfn clone(&self) -> ErrorSeverity
fn clone(&self) -> ErrorSeverity
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 ErrorSeverity
impl Debug for ErrorSeverity
Sourceยงimpl Ord for ErrorSeverity
impl Ord for ErrorSeverity
Sourceยงfn cmp(&self, other: &ErrorSeverity) -> Ordering
fn cmp(&self, other: &ErrorSeverity) -> 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 ErrorSeverity
impl PartialEq for ErrorSeverity
Sourceยงimpl PartialOrd for ErrorSeverity
impl PartialOrd for ErrorSeverity
impl Copy for ErrorSeverity
impl Eq for ErrorSeverity
impl StructuralPartialEq for ErrorSeverity
Auto Trait Implementationsยง
impl Freeze for ErrorSeverity
impl RefUnwindSafe for ErrorSeverity
impl Send for ErrorSeverity
impl Sync for ErrorSeverity
impl Unpin for ErrorSeverity
impl UnsafeUnpin for ErrorSeverity
impl UnwindSafe for ErrorSeverity
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.Sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
Sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Sourceยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more