pub enum ConcurrencySeverity {
Low,
Medium,
High,
Critical,
}
Expand description
Severity levels for concurrency issues
Variants§
Trait Implementations§
Source§impl Clone for ConcurrencySeverity
impl Clone for ConcurrencySeverity
Source§fn clone(&self) -> ConcurrencySeverity
fn clone(&self) -> ConcurrencySeverity
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 moreAuto Trait Implementations§
impl Freeze for ConcurrencySeverity
impl RefUnwindSafe for ConcurrencySeverity
impl Send for ConcurrencySeverity
impl Sync for ConcurrencySeverity
impl Unpin for ConcurrencySeverity
impl UnwindSafe for ConcurrencySeverity
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