pub struct Diagnostic {
pub kind: DiagnosticKind,
pub message: String,
pub span: Span,
pub position: Option<LineCol>,
pub expected: Vec<String>,
pub notes: Vec<String>,
}Expand description
Structured user-facing diagnostic.
Fields§
§kind: DiagnosticKindError phase.
message: StringPrimary message.
span: SpanPrimary source span.
position: Option<LineCol>One-based line/column for the primary span when a source is available.
expected: Vec<String>Expected syntax or semantic items.
notes: Vec<String>Additional context notes.
Implementations§
Source§impl Diagnostic
impl Diagnostic
Sourcepub fn new(
kind: DiagnosticKind,
message: impl Into<String>,
span: Span,
) -> Diagnostic
pub fn new( kind: DiagnosticKind, message: impl Into<String>, span: Span, ) -> Diagnostic
Creates a diagnostic with no expected items or notes.
Sourcepub const fn with_position(self, position: LineCol) -> Diagnostic
pub const fn with_position(self, position: LineCol) -> Diagnostic
Sets a one-based line/column position for the primary span.
Sourcepub fn with_expected(self, expected: impl Into<String>) -> Diagnostic
pub fn with_expected(self, expected: impl Into<String>) -> Diagnostic
Adds one expected syntax or semantic item.
Sourcepub fn with_note(self, note: impl Into<String>) -> Diagnostic
pub fn with_note(self, note: impl Into<String>) -> Diagnostic
Adds one explanatory note.
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 Display for Diagnostic
impl Display for Diagnostic
impl Eq for Diagnostic
Source§impl PartialEq for Diagnostic
impl PartialEq 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