Struct proc_macro_error::Diagnostic [−][src]
pub struct Diagnostic { /* fields omitted */ }
Represents a single diagnostic message
Implementations
impl Diagnostic
[src]
impl Diagnostic
[src]pub fn new(level: Level, message: String) -> Self
[src]
Create a new diagnostic message that points to Span::call_site()
pub fn spanned(span: Span, level: Level, message: String) -> Self
[src]
Create a new diagnostic message that points to the span
pub fn span_error(self, span: Span, msg: String) -> Self
[src]
Add another error message to self such that it will be emitted right after the main message.
pub fn span_help(self, span: Span, msg: String) -> Self
[src]
Attach a “help” note to your main message, the note will have it’s own span on nightly.
Span
The span is ignored on stable, the note effectively inherits its parent’s (main message) span
pub fn help(self, msg: String) -> Self
[src]
Attach a “help” note to your main message.
pub fn span_note(self, span: Span, msg: String) -> Self
[src]
Attach a note to your main message, the note will have it’s own span on nightly.
Span
The span is ignored on stable, the note effectively inherits its parent’s (main message) span
pub fn note(self, msg: String) -> Self
[src]
Attach a note to your main message
pub fn message(&self) -> &str
[src]
The message of main warning/error (no notes attached)
pub fn abort(self) -> !
[src]
Abort the proc-macro’s execution and display the diagnostic.
Warnings
Warnings are not emitted on stable and beta, but this function will abort anyway.
pub fn emit(self)
[src]
Display the diagnostic while not aborting macro execution.
Warnings
Warnings are ignored on stable/beta
Trait Implementations
impl DiagnosticExt for Diagnostic
[src]
impl DiagnosticExt for Diagnostic
[src]fn spanned_range(span_range: SpanRange, level: Level, message: String) -> Self
[src]
fn span_range_error(self, span_range: SpanRange, msg: String) -> Self
[src]
fn span_range_help(self, span_range: SpanRange, msg: String) -> Self
[src]
fn span_range_note(self, span_range: SpanRange, msg: String) -> Self
[src]
impl ToTokens for Diagnostic
[src]
impl ToTokens for Diagnostic
[src]