pub struct Diagnostic {
pub start: Position,
pub end: Position,
pub severity: DiagnosticSeverity,
pub message: String,
pub source: Option<String>,
}Expand description
A single diagnostic finding from a [DiagnosticProvider].
Modelled after LSP’s Diagnostic but simplified — no URI (the editor
owns the document), no code/tags (can be added later).
Fields§
§start: Position§end: Position§severity: DiagnosticSeverity§message: String§source: Option<String>Identifies the provider that produced this diagnostic
(e.g. "bigquery", "jsonschema", "python").
Implementations§
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 · 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 From<Diagnostic> for Marker
impl From<Diagnostic> for Marker
Source§fn from(d: Diagnostic) -> Self
fn from(d: Diagnostic) -> Self
Converts to this type from the input type.
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