pub struct AggregatedDiagnostic {
pub file: String,
pub line: u32,
pub column: u32,
pub message: String,
pub kind: String,
}Expand description
Per-file diagnostic emitted by the aggregator. Wire-stable JSON
shape for --json mode (rustc-compatible field naming per
v1.20.0 D5).
Fields§
§file: String§line: u32§column: u32§message: String§kind: StringTrait Implementations§
Source§impl Clone for AggregatedDiagnostic
impl Clone for AggregatedDiagnostic
Source§fn clone(&self) -> AggregatedDiagnostic
fn clone(&self) -> AggregatedDiagnostic
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 moreSource§impl Debug for AggregatedDiagnostic
impl Debug for AggregatedDiagnostic
Auto Trait Implementations§
impl Freeze for AggregatedDiagnostic
impl RefUnwindSafe for AggregatedDiagnostic
impl Send for AggregatedDiagnostic
impl Sync for AggregatedDiagnostic
impl Unpin for AggregatedDiagnostic
impl UnsafeUnpin for AggregatedDiagnostic
impl UnwindSafe for AggregatedDiagnostic
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