pub struct Diagnostic { /* private fields */ }Expand description
Structured diagnostic.
Implementations§
Source§impl Diagnostic
impl Diagnostic
Sourcepub fn new(
severity: DiagnosticSeverity,
code: DiagnosticCode,
message: impl Into<String>,
) -> Self
pub fn new( severity: DiagnosticSeverity, code: DiagnosticCode, message: impl Into<String>, ) -> Self
Creates a diagnostic.
Sourcepub fn warning(code: DiagnosticCode, message: impl Into<String>) -> Self
pub fn warning(code: DiagnosticCode, message: impl Into<String>) -> Self
Creates a warning diagnostic.
Sourcepub fn error(code: DiagnosticCode, message: impl Into<String>) -> Self
pub fn error(code: DiagnosticCode, message: impl Into<String>) -> Self
Creates an error diagnostic.
Sourcepub fn with_field(self, field: FieldRef) -> Self
pub fn with_field(self, field: FieldRef) -> Self
Attaches field location to this diagnostic.
Sourcepub const fn severity(&self) -> DiagnosticSeverity
pub const fn severity(&self) -> DiagnosticSeverity
Returns the diagnostic severity.
Sourcepub const fn code(&self) -> DiagnosticCode
pub const fn code(&self) -> DiagnosticCode
Returns the diagnostic code.
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
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§
impl<T> Allocation for T
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