[][src]Trait cvar::IConsole

pub trait IConsole: Write {
    fn write_error(&mut self, err: &(dyn StdError + 'static));
}

Console interface for actions to write output to.

Required methods

fn write_error(&mut self, err: &(dyn StdError + 'static))

Notifies the console an error has occurred.

Loading content...

Implementations on Foreign Types

impl IConsole for String[src]

Loading content...

Implementors

impl IConsole for NullConsole[src]

impl<W: Write> IConsole for IoConsole<W>[src]

Loading content...