pub struct Diagnostic {
pub severity: DiagnosticSeverity,
pub message: String,
pub code: DiagnosticCode,
pub primary_range: TextRange,
pub secondary_ranges: Vec<TextRange>,
pub labels: Vec<DiagnosticLabel>,
pub phase: DiagnosticPhase,
}Fields§
§severity: DiagnosticSeverity§message: String§code: DiagnosticCode§primary_range: TextRange§secondary_ranges: Vec<TextRange>§labels: Vec<DiagnosticLabel>§phase: DiagnosticPhaseImplementations§
Source§impl Diagnostic
impl Diagnostic
Sourcepub fn new(
severity: DiagnosticSeverity,
code: DiagnosticCode,
message: impl Into<String>,
phase: DiagnosticPhase,
primary_range: TextRange,
) -> Self
pub fn new( severity: DiagnosticSeverity, code: DiagnosticCode, message: impl Into<String>, phase: DiagnosticPhase, primary_range: TextRange, ) -> Self
Creates a diagnostic with a single primary range.
Args: severity: Host-facing severity level. code: Stable machine-readable code. message: Human-readable summary. phase: Pipeline stage that produced the issue. primary_range: Main highlighted source range.
Returns: New diagnostic value.
Trait Implementations§
Source§impl Clone for Diagnostic
impl Clone for Diagnostic
Source§fn clone(&self) -> Diagnostic
fn clone(&self) -> Diagnostic
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 Diagnostic
impl Debug for Diagnostic
Source§impl PartialEq for Diagnostic
impl PartialEq for Diagnostic
Source§fn eq(&self, other: &Diagnostic) -> bool
fn eq(&self, other: &Diagnostic) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Diagnostic
impl StructuralPartialEq for Diagnostic
Auto Trait Implementations§
impl Freeze for Diagnostic
impl RefUnwindSafe for Diagnostic
impl Send for Diagnostic
impl Sync for Diagnostic
impl Unpin for Diagnostic
impl UnsafeUnpin for Diagnostic
impl UnwindSafe for Diagnostic
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