pub struct Diagnostic { /* private fields */ }Expand description
Diagnostic
Compact public diagnostic payload.
Implementations§
Source§impl Diagnostic
impl Diagnostic
Sourcepub const fn new(
code: DiagnosticCode,
origin: ErrorOrigin,
detail: Option<DiagnosticDetail>,
) -> Self
pub const fn new( code: DiagnosticCode, origin: ErrorOrigin, detail: Option<DiagnosticDetail>, ) -> Self
Build a compact diagnostic from a code and optional structured detail.
Sourcepub const fn from_code(code: DiagnosticCode) -> Self
pub const fn from_code(code: DiagnosticCode) -> Self
Build a compact diagnostic using the code’s default origin.
Sourcepub const fn code(&self) -> DiagnosticCode
pub const fn code(&self) -> DiagnosticCode
Return the stable diagnostic code.
Sourcepub const fn class(&self) -> ErrorClass
pub const fn class(&self) -> ErrorClass
Return the diagnostic class.
Sourcepub const fn origin(&self) -> ErrorOrigin
pub const fn origin(&self) -> ErrorOrigin
Return the subsystem origin.
Sourcepub const fn detail(&self) -> Option<&DiagnosticDetail>
pub const fn detail(&self) -> Option<&DiagnosticDetail>
Return structured diagnostic detail, when available.
Sourcepub const fn error_code(&self) -> ErrorCode
pub const fn error_code(&self) -> ErrorCode
Return the numeric public wire code for this diagnostic.
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
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 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