pub struct Diagnostic {
pub range: DiagnosticRange,
pub severity: Option<DiagnosticSeverity>,
pub code: Option<String>,
pub source: Option<String>,
pub message: String,
pub related_information_json: Option<String>,
pub data_json: Option<String>,
}Expand description
A single diagnostic item for the current document.
Fields§
§range: DiagnosticRangeDiagnostic range in character offsets.
severity: Option<DiagnosticSeverity>Optional diagnostic severity.
code: Option<String>Optional diagnostic code (stringified).
source: Option<String>Optional diagnostic source (e.g. "rust-analyzer").
message: StringDiagnostic message.
Optional related information payload, encoded as JSON text (if provided by an integration).
data_json: Option<String>Optional extra data payload, encoded as JSON text (if provided by an integration).
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 PartialEq for Diagnostic
impl PartialEq for Diagnostic
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