Struct x_lint::LintFormatter[][src]

pub struct LintFormatter<'l, 'a> { /* fields omitted */ }

A lint formatter.

Lints write LintMessage instances to this.

Implementations

impl<'l, 'a> LintFormatter<'l, 'a>[src]

pub fn new(
    source: LintSource<'l>,
    messages: &'a mut Vec<(LintSource<'l>, LintMessage)>
) -> Self
[src]

pub fn write(&mut self, level: LintLevel, message: impl Into<Cow<'static, str>>)[src]

Writes a new lint message to this formatter.

pub fn write_kind(
    &mut self,
    kind: LintKind<'l>,
    level: LintLevel,
    message: impl Into<Cow<'static, str>>
)
[src]

Writes a new lint message to this formatter with a custom kind.

Auto Trait Implementations

impl<'l, 'a> RefUnwindSafe for LintFormatter<'l, 'a>

impl<'l, 'a> Send for LintFormatter<'l, 'a>

impl<'l, 'a> Sync for LintFormatter<'l, 'a>

impl<'l, 'a> Unpin for LintFormatter<'l, 'a> where
    'l: 'a, 

impl<'l, 'a> !UnwindSafe for LintFormatter<'l, 'a>

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<T> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SafeBorrow<T> for T where
    T: ?Sized

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.