struct ErrorKey {
code: ErrorCode,
line: usize,
column: usize,
message: String,
}
Expand description
Key for error deduplication that groups semantically similar errors
Fields§
§code: ErrorCode
§line: usize
§column: usize
§message: String
Trait Implementations§
impl Eq for ErrorKey
impl StructuralPartialEq for ErrorKey
Auto Trait Implementations§
impl Freeze for ErrorKey
impl RefUnwindSafe for ErrorKey
impl Send for ErrorKey
impl Sync for ErrorKey
impl Unpin for ErrorKey
impl UnwindSafe for ErrorKey
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