pub enum LeniencySeverity {
Info,
Warning,
Critical,
}Expand description
Severity of a LeniencyEvent.
Variants§
Info
A recovery succeeded; output may differ slightly from the source.
Warning
A degradation or non-standard recovery occurred; output may be partial.
Critical
A hard limit or severe corruption required truncating the output.
Trait Implementations§
Source§impl Clone for LeniencySeverity
impl Clone for LeniencySeverity
Source§fn clone(&self) -> LeniencySeverity
fn clone(&self) -> LeniencySeverity
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LeniencySeverity
Source§impl Debug for LeniencySeverity
impl Debug for LeniencySeverity
impl Eq for LeniencySeverity
Source§impl PartialEq for LeniencySeverity
impl PartialEq for LeniencySeverity
Source§fn eq(&self, other: &LeniencySeverity) -> bool
fn eq(&self, other: &LeniencySeverity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LeniencySeverity
Auto Trait Implementations§
impl Freeze for LeniencySeverity
impl RefUnwindSafe for LeniencySeverity
impl Send for LeniencySeverity
impl Sync for LeniencySeverity
impl Unpin for LeniencySeverity
impl UnsafeUnpin for LeniencySeverity
impl UnwindSafe for LeniencySeverity
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