Skip to main content

Console

Trait Console 

Source
pub trait Console {
    // Required methods
    fn arguments(&self) -> &[Argument];
    fn sync(&mut self);
    fn problem(&mut self, threat: Threat);
}

Required Methods§

Source

fn arguments(&self) -> &[Argument]

Source

fn sync(&mut self)

Source

fn problem(&mut self, threat: Threat)

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§