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

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 Clone for LoggerOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LoggerOutput
[src]

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

This method tests for !=.

impl Eq for LoggerOutput
[src]