pub struct ConcurrencyIssue {
pub issue_type: ConcurrencyIssueType,
pub location: Span,
pub description: String,
pub suggestion: Option<String>,
pub severity: ConcurrencySeverity,
}
Expand description
Concurrency issue found in the code
Fields§
§issue_type: ConcurrencyIssueType
§location: Span
§description: String
§suggestion: Option<String>
§severity: ConcurrencySeverity
Trait Implementations§
Source§impl Clone for ConcurrencyIssue
impl Clone for ConcurrencyIssue
Source§fn clone(&self) -> ConcurrencyIssue
fn clone(&self) -> ConcurrencyIssue
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 ConcurrencyIssue
impl RefUnwindSafe for ConcurrencyIssue
impl Send for ConcurrencyIssue
impl Sync for ConcurrencyIssue
impl Unpin for ConcurrencyIssue
impl UnwindSafe for ConcurrencyIssue
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