[][src]Struct rustc_errors::DiagnosticBuilder

#[must_use]
pub struct DiagnosticBuilder<'a> { pub handler: &'a Handler, // some fields omitted }

Used for emitting structured error messages and other diagnostic information.

If there is some state in a downstream crate you would like to access in the methods of DiagnosticBuilder here, consider extending HandlerFlags, accessed via self.handler.flags.

Fields

Methods

impl<'a> DiagnosticBuilder<'a>
[src]

Emit the diagnostic.

Buffers the diagnostic for later emission, unless handler has disabled such buffering.

Convenience function for internal use, clients should use one of the span_* methods instead.

Delay emission of this diagnostic as a bug.

This can be useful in contexts where an error indicates a bug but typically this only happens when other compilation errors have already happened. In those cases this can be used to defer emission of this diagnostic as a bug in the compiler only if no other errors have been emitted.

In the meantime, though, callsites are required to deal with the "bug" locally in whichever way makes the most sense.

Add a span/label to be included in the resulting snippet. This is pushed onto the MultiSpan that was created when the diagnostic was first built. If you don't call this function at all, and you just supplied a Span to create the diagnostic, then the snippet will just include that Span, which is called the primary span.

Convenience function for internal use, clients should use one of the struct_* methods on Handler.

Convenience function for internal use, clients should use one of the struct_* methods on Handler.

Creates a new DiagnosticBuilder with an already constructed diagnostic.

Methods from Deref<Target = Diagnostic>

Cancel the diagnostic (a structured diagnostic must either be emitted or canceled or it will panic when dropped).

Add a span/label to be included in the resulting snippet. This is pushed onto the MultiSpan that was created when the diagnostic was first built. If you don't call this function at all, and you just supplied a Span to create the diagnostic, then the snippet will just include that Span, which is called the primary span.

Deprecated

: Use span_suggestion_short_with_applicability

Prints out a message with a suggested edit of the code. If the suggestion is presented inline it will only show the text message and not the text.

See CodeSuggestion for more information.

Deprecated

: Use span_suggestion_with_applicability

Prints out a message with a suggested edit of the code.

In case of short messages and a simple suggestion, rustc displays it as a label like

"try adding parentheses: (tup.0).1"

The message

  • should not end in any punctuation (a : is added automatically)
  • should not be a question
  • should not contain any parts like "the following", "as shown"
  • may look like "to do xyz, use" or "to do xyz, use abc"
  • may contain a name of a function, variable or type, but not whole expressions

See CodeSuggestion for more information.

Deprecated

: Use multipart_suggestion_with_applicability

Deprecated

: Use span_suggestions_with_applicability

Prints out a message with multiple suggested edits of the code.

This is a suggestion that may contain mistakes or fillers and should be read and understood by a human.

Used by a lint. Copies over all details but the "main message".

Convenience function for internal use, clients should use one of the public methods above.

Trait Implementations

impl<'a> Clone for DiagnosticBuilder<'a>
[src]

Performs copy-assignment from source. Read more

impl<'a> Drop for DiagnosticBuilder<'a>
[src]

Destructor bomb - a DiagnosticBuilder must be either emitted or canceled or we emit a bug.

impl<'a> DerefMut for DiagnosticBuilder<'a>
[src]

impl<'a> Debug for DiagnosticBuilder<'a>
[src]

impl<'a> Deref for DiagnosticBuilder<'a>
[src]

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a> !Send for DiagnosticBuilder<'a>

impl<'a> !Sync for DiagnosticBuilder<'a>

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<E> SpecializationError for E
[src]

impl<T> Erased for T
[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<E> SpecializationError for E
[src]

impl<T> Erased for T
[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> Erased for T

impl<T> Erased for T