Enum flexi_logger::FlexiLoggerError [] [src]

pub enum FlexiLoggerError {
    BadDirectory,
    Io(Error),
    Log(SetLoggerError),
}

Describes errors in the initialization of flexi_logger.

Variants

Log file cannot be written because the specified path is not a directory.

Log cannot be written because the configured output directory is not accessible.

Logger initialization failed.

Trait Implementations

impl Debug for FlexiLoggerError
[src]

[src]

Formats the value using the given formatter.

impl Display for FlexiLoggerError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for FlexiLoggerError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl From<SetLoggerError> for FlexiLoggerError
[src]

[src]

Performs the conversion.

impl From<Error> for FlexiLoggerError
[src]

[src]

Performs the conversion.