Enum edjx::LogLevel

source ·
pub enum LogLevel {
    INFO,
    ERROR,
    WARN,
    DEBUG,
    TRACE,
    FATAL,
}
Expand description

An enum representing the available verbosity levels of the logger.

Variants§

§

INFO

The “info” level.

Designates useful information.

§

ERROR

The “error” level.

Designates very serious errors.

§

WARN

The “warn” level.

Designates hazardous situations.

§

DEBUG

The “debug” level.

Designates lower priority information.

§

TRACE

The “trace” level.

Designates very low priority, often extremely verbose, information.

§

FATAL

The “fatal” level.

Designates fatal situations.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.