Enum simplelog::TermLogError[][src]

pub enum TermLogError {
    SetLogger(SetLoggerError),
    Term,
}

TermLogger error type.

Variants

The type returned by set_logger if set_logger has already been called.

TermLogger initialization might also fail if stdout or stderr could not be opened, e.g. when no tty is attached to the process, it runs detached in the background, etc This is represented by the Term Kind

Trait Implementations

impl Debug for TermLogError
[src]

Formats the value using the given formatter. Read more

impl Display for TermLogError
[src]

Formats the value using the given formatter. Read more

impl Error for TermLogError
[src]

This method is soft-deprecated. Read more

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

impl From<SetLoggerError> for TermLogError
[src]

Performs the conversion.

Auto Trait Implementations