Trait rustc_errors::emitter::Emitter [−][src]
pub trait Emitter {
Show 13 methods
fn emit_diagnostic(&mut self, diag: &Diagnostic);
fn source_map(&self) -> Option<&Lrc<SourceMap>>;
fn emit_artifact_notification(&mut self, _path: &Path, _artifact_type: &str) { ... }
fn emit_future_breakage_report(&mut self, _diags: Vec<Diagnostic>) { ... }
fn emit_unused_externs(
&mut self,
_lint_level: &str,
_unused_externs: &[&str]
) { ... }
fn should_show_explain(&self) -> bool { ... }
fn supports_color(&self) -> bool { ... }
fn primary_span_formatted<'a>(
&mut self,
diag: &'a Diagnostic
) -> (MultiSpan, &'a [CodeSuggestion]) { ... }
fn fix_multispans_in_extern_macros_and_render_macro_backtrace(
&self,
source_map: &Option<Lrc<SourceMap>>,
span: &mut MultiSpan,
children: &mut Vec<SubDiagnostic>,
level: &Level,
backtrace: bool
) { ... }
fn render_multispans_macro_backtrace(
&self,
span: &mut MultiSpan,
children: &mut Vec<SubDiagnostic>,
backtrace: bool
) { ... }
fn render_multispan_macro_backtrace(
&self,
span: &mut MultiSpan,
always_backtrace: bool
) { ... }
fn fix_multispans_in_extern_macros(
&self,
source_map: &Option<Lrc<SourceMap>>,
span: &mut MultiSpan,
children: &mut Vec<SubDiagnostic>
) { ... }
fn fix_multispan_in_extern_macros(
&self,
source_map: &Lrc<SourceMap>,
span: &mut MultiSpan
) { ... }
}
Expand description
Emitter trait for emitting errors.
Required methods
fn emit_diagnostic(&mut self, diag: &Diagnostic)
fn emit_diagnostic(&mut self, diag: &Diagnostic)
Emit a structured diagnostic.
fn source_map(&self) -> Option<&Lrc<SourceMap>>
Provided methods
fn emit_artifact_notification(&mut self, _path: &Path, _artifact_type: &str)
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 emit_future_breakage_report(&mut self, _diags: Vec<Diagnostic>)
Emit list of unused externs
fn should_show_explain(&self) -> bool
fn should_show_explain(&self) -> bool
Checks if should show explanations about “rustc –explain”
fn supports_color(&self) -> bool
fn supports_color(&self) -> bool
Checks if we can use colors in the current output stream.
fn primary_span_formatted<'a>(
&mut self,
diag: &'a Diagnostic
) -> (MultiSpan, &'a [CodeSuggestion])
fn primary_span_formatted<'a>(
&mut self,
diag: &'a Diagnostic
) -> (MultiSpan, &'a [CodeSuggestion])
Formats the substitutions of the primary_span
The are a lot of conditions to this method, but in short:
-
If the current
Diagnostic
has only one visibleCodeSuggestion
, we format thehelp
suggestion depending on the content of the substitutions. In that case, we return the modified span only. -
If the current
Diagnostic
has multiple suggestions, we return the originalprimary_span
and the original suggestions.