pub trait Reporter {
    fn report(&mut self, msg: CompilerMessage);
}
Expand description

Provides an interface through which the compiler can report errors and warnings.

Required Methods

Passes a compiler message to the implementor for processing.

Implementations on Foreign Types

Implementors