[][src]Struct rustc_errors::Diagnostic

#[must_use]
pub struct Diagnostic { pub level: Level, pub message: Vec<(String, Style)>, pub code: Option<DiagnosticId>, pub span: MultiSpan, pub children: Vec<SubDiagnostic>, pub suggestions: Vec<CodeSuggestion>, }

Fields

level: Levelmessage: Vec<(String, Style)>code: Option<DiagnosticId>span: MultiSpanchildren: Vec<SubDiagnostic>suggestions: Vec<CodeSuggestion>

Methods

impl Diagnostic
[src]

pub fn new(level: Level, message: &str) -> Self
[src]

pub fn new_with_code(
    level: Level,
    code: Option<DiagnosticId>,
    message: &str
) -> Self
[src]

pub fn is_error(&self) -> bool
[src]

pub fn cancel(&mut self)
[src]

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

pub fn cancelled(&self) -> bool
[src]

pub fn span_label<T: Into<String>>(&mut self, span: Span, label: T) -> &mut Self
[src]

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.

pub fn replace_span_with(&mut self, after: Span) -> &mut Self
[src]

pub fn note_expected_found(
    &mut self,
    label: &dyn Display,
    expected: DiagnosticStyledString,
    found: DiagnosticStyledString
) -> &mut Self
[src]

pub fn note_expected_found_extra(
    &mut self,
    label: &dyn Display,
    expected: DiagnosticStyledString,
    found: DiagnosticStyledString,
    expected_extra: &dyn Display,
    found_extra: &dyn Display
) -> &mut Self
[src]

pub fn note_trait_signature(
    &mut self,
    name: String,
    signature: String
) -> &mut Self
[src]

pub fn note(&mut self, msg: &str) -> &mut Self
[src]

pub fn highlighted_note(&mut self, msg: Vec<(String, Style)>) -> &mut Self
[src]

pub fn span_note<S: Into<MultiSpan>>(&mut self, sp: S, msg: &str) -> &mut Self
[src]

pub fn warn(&mut self, msg: &str) -> &mut Self
[src]

pub fn span_warn<S: Into<MultiSpan>>(&mut self, sp: S, msg: &str) -> &mut Self
[src]

pub fn help(&mut self, msg: &str) -> &mut Self
[src]

pub fn span_help<S: Into<MultiSpan>>(&mut self, sp: S, msg: &str) -> &mut Self
[src]

pub fn span_suggestion_short(
    &mut self,
    sp: Span,
    msg: &str,
    suggestion: String
) -> &mut Self
[src]

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.

pub fn span_suggestion(
    &mut self,
    sp: Span,
    msg: &str,
    suggestion: String
) -> &mut Self
[src]

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.

pub fn multipart_suggestion_with_applicability(
    &mut self,
    msg: &str,
    suggestion: Vec<(Span, String)>,
    applicability: Applicability
) -> &mut Self
[src]

pub fn multipart_suggestion(
    &mut self,
    msg: &str,
    suggestion: Vec<(Span, String)>
) -> &mut Self
[src]

Deprecated:

Use multipart_suggestion_with_applicability

pub fn span_suggestions(
    &mut self,
    sp: Span,
    msg: &str,
    suggestions: Vec<String>
) -> &mut Self
[src]

Deprecated:

Use span_suggestions_with_applicability

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

pub fn span_suggestion_with_applicability(
    &mut self,
    sp: Span,
    msg: &str,
    suggestion: String,
    applicability: Applicability
) -> &mut Self
[src]

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

pub fn span_suggestions_with_applicability(
    &mut self,
    sp: Span,
    msg: &str,
    suggestions: impl Iterator<Item = String>,
    applicability: Applicability
) -> &mut Self
[src]

pub fn span_suggestion_short_with_applicability(
    &mut self,
    sp: Span,
    msg: &str,
    suggestion: String,
    applicability: Applicability
) -> &mut Self
[src]

pub fn set_span<S: Into<MultiSpan>>(&mut self, sp: S) -> &mut Self
[src]

pub fn code(&mut self, s: DiagnosticId) -> &mut Self
[src]

pub fn get_code(&self) -> Option<DiagnosticId>
[src]

pub fn message(&self) -> String
[src]

pub fn styled_message(&self) -> &Vec<(String, Style)>
[src]

pub fn copy_details_not_message(&mut self, from: &Diagnostic)
[src]

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

pub fn sub(
    &mut self,
    level: Level,
    message: &str,
    span: MultiSpan,
    render_span: Option<MultiSpan>
)
[src]

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

Trait Implementations

impl PartialEq<Diagnostic> for Diagnostic
[src]

impl Clone for Diagnostic
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Diagnostic
[src]

impl Hash for Diagnostic
[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Decodable for Diagnostic
[src]

impl Encodable for Diagnostic
[src]

Auto Trait Implementations

impl !Send for Diagnostic

impl !Sync for Diagnostic

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?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