Enum flexi_logger::FlexiLoggerError
[−]
[src]
pub enum FlexiLoggerError { BadDirectory, Io(Error), Log(SetLoggerError), }
Describes errors in the initialization of flexi_logger.
Variants
BadDirectory
"Log cannot be written, most likely due to permission errors on OS level"
Io(Error)
"Log cannot be written because the configured output directory is not accessible"
Log(SetLoggerError)
"Logger initialization failed"
Trait Implementations
impl Debug for FlexiLoggerError
[src]
impl Display for FlexiLoggerError
[src]
fn fmt(&self, f: &mut Formatter) -> Result
[−]
Formats the value using the given formatter. Read more
impl Error for FlexiLoggerError
[src]
fn description(&self) -> &str
[−]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
[−]
The lower-level cause of this error, if any. Read more
impl From<SetLoggerError> for FlexiLoggerError
[src]
fn from(err: SetLoggerError) -> FlexiLoggerError
[−]
Performs the conversion.
impl From<Error> for FlexiLoggerError
[src]
fn from(err: Error) -> FlexiLoggerError
[−]
Performs the conversion.