Struct Handler

Source
pub struct Handler {
    pub can_emit_warnings: bool,
    /* private fields */
}
Expand description

A handler deals with errors; certain errors (fatal, bug, unimpl) may cause immediate exit, others log errors for later reporting.

Fields§

§can_emit_warnings: bool

Implementations§

Source§

impl Handler

Source

pub fn with_tty_emitter( color_config: ColorConfig, can_emit_warnings: bool, treat_err_as_bug: bool, cm: Option<Rc<dyn CodeMapper>>, ) -> Handler

Source

pub fn with_emitter( can_emit_warnings: bool, treat_err_as_bug: bool, e: Box<dyn Emitter>, ) -> Handler

Source

pub fn set_continue_after_error(&self, continue_after_error: bool)

Source

pub fn struct_dummy<'a>(&'a self) -> DiagnosticBuilder<'a>

Source

pub fn struct_span_warn<'a, S: Into<MultiSpan>>( &'a self, sp: S, msg: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn struct_span_warn_with_code<'a, S: Into<MultiSpan>>( &'a self, sp: S, msg: &str, code: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn struct_warn<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a>

Source

pub fn struct_span_err<'a, S: Into<MultiSpan>>( &'a self, sp: S, msg: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn struct_span_err_with_code<'a, S: Into<MultiSpan>>( &'a self, sp: S, msg: &str, code: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn struct_err<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a>

Source

pub fn struct_err_with_code<'a>( &'a self, msg: &str, code: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn struct_span_fatal<'a, S: Into<MultiSpan>>( &'a self, sp: S, msg: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn struct_span_fatal_with_code<'a, S: Into<MultiSpan>>( &'a self, sp: S, msg: &str, code: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn struct_fatal<'a>(&'a self, msg: &str) -> DiagnosticBuilder<'a>

Source

pub fn cancel(&self, err: &mut DiagnosticBuilder<'_>)

Source

pub fn span_fatal<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> FatalError

Source

pub fn span_fatal_with_code<S: Into<MultiSpan>>( &self, sp: S, msg: &str, code: &str, ) -> FatalError

Source

pub fn span_err<S: Into<MultiSpan>>(&self, sp: S, msg: &str)

Source

pub fn mut_span_err<'a, S: Into<MultiSpan>>( &'a self, sp: S, msg: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn span_err_with_code<S: Into<MultiSpan>>( &self, sp: S, msg: &str, code: &str, )

Source

pub fn span_warn<S: Into<MultiSpan>>(&self, sp: S, msg: &str)

Source

pub fn span_warn_with_code<S: Into<MultiSpan>>( &self, sp: S, msg: &str, code: &str, )

Source

pub fn span_bug<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> !

Source

pub fn delay_span_bug<S: Into<MultiSpan>>(&self, sp: S, msg: &str)

Source

pub fn span_bug_no_panic<S: Into<MultiSpan>>(&self, sp: S, msg: &str)

Source

pub fn span_note_without_error<S: Into<MultiSpan>>(&self, sp: S, msg: &str)

Source

pub fn span_note_diag<'a>( &'a self, sp: Span, msg: &str, ) -> DiagnosticBuilder<'a>

Source

pub fn span_unimpl<S: Into<MultiSpan>>(&self, sp: S, msg: &str) -> !

Source

pub fn fatal(&self, msg: &str) -> FatalError

Source

pub fn err(&self, msg: &str)

Source

pub fn warn(&self, msg: &str)

Source

pub fn note_without_error(&self, msg: &str)

Source

pub fn bug(&self, msg: &str) -> !

Source

pub fn unimpl(&self, msg: &str) -> !

Source

pub fn bump_err_count(&self)

Source

pub fn err_count(&self) -> usize

Source

pub fn has_errors(&self) -> bool

Source

pub fn abort_if_errors(&self)

Source

pub fn emit(&self, msp: &MultiSpan, msg: &str, lvl: Level)

Source

pub fn emit_with_code(&self, msp: &MultiSpan, msg: &str, code: &str, lvl: Level)

Auto Trait Implementations§

§

impl !Freeze for Handler

§

impl !RefUnwindSafe for Handler

§

impl !Send for Handler

§

impl !Sync for Handler

§

impl Unpin for Handler

§

impl !UnwindSafe for Handler

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.