[][src]Trait rustc_errors::emitter::Emitter

pub trait Emitter {
    fn emit_diagnostic(&mut self, db: &DiagnosticBuilder);

    fn emit_artifact_notification(&mut self, _path: &Path, _artifact_type: &str) { ... }
fn should_show_explain(&self) -> bool { ... } }

Emitter trait for emitting errors.

Required methods

fn emit_diagnostic(&mut self, db: &DiagnosticBuilder)

Emit a structured diagnostic.

Loading content...

Provided methods

fn emit_artifact_notification(&mut self, _path: &Path, _artifact_type: &str)

Emit a notification that an artifact has been output. This is currently only supported for the JSON format, other formats can, and will, simply ignore it.

fn should_show_explain(&self) -> bool

Checks if should show explanations about "rustc --explain"

Loading content...

Implementors

impl Emitter for AnnotateSnippetEmitterWriter[src]

fn emit_diagnostic(&mut self, db: &DiagnosticBuilder)[src]

The entry point for the diagnostics generation

fn emit_artifact_notification(&mut self, _path: &Path, _artifact_type: &str)[src]

impl Emitter for EmitterWriter[src]

fn emit_artifact_notification(&mut self, _path: &Path, _artifact_type: &str)[src]

Loading content...