[][src]Struct rustc_ap_rustc_session::lint::BufferedEarlyLint

pub struct BufferedEarlyLint {
    pub span: MultiSpan,
    pub msg: String,
    pub node_id: NodeId,
    pub lint_id: LintId,
    pub diagnostic: BuiltinLintDiagnostics,
}

Lints that are buffered up early on in the Session before the LintLevels is calculated. These are later passed to librustc_middle.

Fields

span: MultiSpan

The span of code that we are linting on.

msg: String

The lint message.

node_id: NodeId

The NodeId of the AST node that generated the lint.

lint_id: LintId

A lint Id that can be passed to rustc_session::lint::Lint::from_parser_lint_id.

diagnostic: BuiltinLintDiagnostics

Customization of the DiagnosticBuilder<'_> for the lint.

Trait Implementations

impl PartialEq<BufferedEarlyLint> for BufferedEarlyLint[src]

impl StructuralPartialEq for BufferedEarlyLint[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

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

impl<T> MaybeResult<T> for T[src]

type Error = !

impl<E> SpecializationError for E[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.