pub trait Console {
// Required methods
fn arguments(&self) -> &[Argument];
fn sync(&mut self);
fn problem(&mut self, threat: Threat);
}Required Methods§
fn arguments(&self) -> &[Argument]
fn sync(&mut self)
fn problem(&mut self, threat: Threat)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".