Trait kailua_diag::report::Report [] [src]

pub trait Report {
    fn message_locale(&self) -> Locale;
    fn add_span(&self, kind: Kind, span: Span, msg: &Localize) -> Result<()>;
}

A report receiver.

This trait is not suitable for actual reporting; consider using the Reporter trait instead. (An additional trait is required to make this trait object-friendly.)

Required Methods

Implementors