Trait cvar::IConsole[][src]

pub trait IConsole: Any + 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))[src]

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 + 'static> IConsole for IoConsole<W>[src]

Loading content...