pub enum ConcurrencyIssueType {
AsyncAntipattern,
MissingAwait,
DeadlockPotential,
ThreadSafetyViolation,
UnboundedChannel,
ManualSendSync,
}
Expand description
Types of concurrency issues
Variants§
AsyncAntipattern
MissingAwait
DeadlockPotential
ThreadSafetyViolation
UnboundedChannel
ManualSendSync
Trait Implementations§
Source§impl Clone for ConcurrencyIssueType
impl Clone for ConcurrencyIssueType
Source§fn clone(&self) -> ConcurrencyIssueType
fn clone(&self) -> ConcurrencyIssueType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for ConcurrencyIssueType
impl RefUnwindSafe for ConcurrencyIssueType
impl Send for ConcurrencyIssueType
impl Sync for ConcurrencyIssueType
impl Unpin for ConcurrencyIssueType
impl UnwindSafe for ConcurrencyIssueType
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