Enum pipe_logger_lib::PipeLoggerBuilderError[][src]

pub enum PipeLoggerBuilderError {
    RotateFileSizeTooSmall,
    CountTooSmall,
    IOError(Error),
    FileIsDirectory,
}

Variants

A valid rotated file size needs bigger than 1.

A valid count of log files needs bigger than 0.

std::io::Error.

A log file cannot be a directory.

Trait Implementations

impl Debug for PipeLoggerBuilderError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations