Struct BufferEmitter

Source
struct BufferEmitter {
    buffer: Arc<Lock<Buffer>>,
    translator: Translator,
}

Fields§

§buffer: Arc<Lock<Buffer>>§translator: Translator

Trait Implementations§

Source§

impl Emitter for BufferEmitter

Source§

fn emit_diagnostic(&mut self, diag: DiagInner, _registry: &Registry)

Emit a structured diagnostic.
Source§

fn source_map(&self) -> Option<&SourceMap>

Source§

fn translator(&self) -> &Translator

Source§

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

Emit a notification that an artifact has been output. Currently only supported for the JSON format.
Source§

fn emit_timing_section(&mut self, _record: TimingRecord, _event: TimingEvent)

Emit a timestamp with start/end of a timing section. Currently only supported for the JSON format.
Source§

fn emit_future_breakage_report( &mut self, _diags: Vec<DiagInner>, _registry: &Registry, )

Emit a report about future breakage. Currently only supported for the JSON format.
Source§

fn emit_unused_externs(&mut self, _lint_level: Level, _unused_externs: &[&str])

Emit list of unused externs. Currently only supported for the JSON format.
Source§

fn should_show_explain(&self) -> bool

Checks if should show explanations about “rustc –explain”
Source§

fn supports_color(&self) -> bool

Checks if we can use colors in the current output stream.
Source§

fn primary_span_formatted( &self, primary_span: &mut MultiSpan, suggestions: &mut Vec<CodeSuggestion>, fluent_args: &FluentArgs<'_>, )

Formats the substitutions of the primary_span Read more
Source§

fn fix_multispans_in_extern_macros_and_render_macro_backtrace( &self, span: &mut MultiSpan, children: &mut Vec<Subdiag>, level: &Level, backtrace: bool, )

Source§

fn render_multispans_macro_backtrace( &self, span: &mut MultiSpan, children: &mut Vec<Subdiag>, backtrace: bool, )

Source§

fn render_multispan_macro_backtrace( &self, span: &mut MultiSpan, always_backtrace: bool, )

Source§

fn fix_multispans_in_extern_macros( &self, span: &mut MultiSpan, children: &mut Vec<Subdiag>, )

Source§

fn fix_multispan_in_extern_macros(&self, span: &mut MultiSpan)

Auto Trait Implementations§

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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 24 bytes