Struct swc_common::errors::emitter::EmitterWriter
source · [−]pub struct EmitterWriter { /* private fields */ }
Expand description
Implementation of Emitter which pretty-prints the errors.
Implementations
sourceimpl EmitterWriter
impl EmitterWriter
pub fn stderr(
color_config: ColorConfig,
source_map: Option<Lrc<SourceMapperDyn>>,
short_message: bool,
teach: bool
) -> EmitterWriter
sourceimpl EmitterWriter
impl EmitterWriter
pub fn new(
dst: Box<dyn Write + Send>,
source_map: Option<Lrc<SourceMapperDyn>>,
short_message: bool,
teach: bool
) -> EmitterWriter
pub fn ui_testing(self, ui_testing: bool) -> Self
pub fn skip_filename(self, skip_filename: bool) -> Self
Trait Implementations
sourceimpl Emitter for EmitterWriter
impl Emitter for EmitterWriter
sourcefn emit(&mut self, db: &DiagnosticBuilder<'_>)
fn emit(&mut self, db: &DiagnosticBuilder<'_>)
Emit a structured diagnostic.
sourcefn should_show_explain(&self) -> bool
fn should_show_explain(&self) -> bool
Check if should show explanations about “rustc –explain”
Auto Trait Implementations
impl !RefUnwindSafe for EmitterWriter
impl Send for EmitterWriter
impl !Sync for EmitterWriter
impl Unpin for EmitterWriter
impl !UnwindSafe for EmitterWriter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more