pub trait CompilationEvent:
Sync
+ Send
+ Any {
// Required methods
fn type_name(&self) -> &'static str;
fn severity(&self) -> Severity;
fn message(&self) -> String;
fn to_json(&self) -> String;
}
pub trait CompilationEvent:
Sync
+ Send
+ Any {
// Required methods
fn type_name(&self) -> &'static str;
fn severity(&self) -> Severity;
fn message(&self) -> String;
fn to_json(&self) -> String;
}