Skip to main content

Console

Trait Console 

Source
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§

Source

fn arguments(&self) -> Vec<String>

Source

fn environment(&self) -> Map<String, String>

Source

fn sync(&mut self)

Source

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".

Implementors§