pub trait Console: Threaten {
// Required methods
fn arguments(&self) -> Vec<String>;
fn environment(&self) -> Map<String, String>;
fn sync(&mut self);
fn problem<Object: Into<Issue>, const N: usize>(
&mut self,
threat: Threat<Object, N>,
);
}Required Methods§
fn arguments(&self) -> Vec<String>
fn environment(&self) -> Map<String, String>
fn sync(&mut self)
fn problem<Object: Into<Issue>, const N: usize>( &mut self, threat: Threat<Object, N>, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".