Enum artifact::logger::LoggerOutput [] [src]

pub enum LoggerOutput {
    FileLog(PathBuf),
    StdoutLog,
    StderrLog,
    MultiLog(Vec<String>),
}

Indicates what kind of output stream a logger will use.

Variants

FileLog(PathBuf)StdoutLogStderrLogMultiLog(Vec<String>)

Log to various other loggers. Any messages sent to this logger will be forwarded on to the loggers with the names given. Note that messages are filtered both by the level of this logger and the level of the sub loggers assigned to it.

Trait Implementations

impl Eq for LoggerOutput
[src]

impl PartialEq for LoggerOutput
[src]

fn eq(&self, __arg_0: &LoggerOutput) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &LoggerOutput) -> bool

This method tests for !=.

impl Clone for LoggerOutput
[src]

fn clone(&self) -> LoggerOutput

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more