Enum androidy_log::LogPriority[][src]

#[repr(i32)]
pub enum LogPriority {
    UNKNOWN,
    DEFAULT,
    VERBOSE,
    DEBUG,
    INFO,
    WARN,
    ERROR,
    FATAL,
    SILENT,
}
Expand description

Priority of the log message.

Variants

UNKNOWN

For internal use only.

DEFAULT

The default priority, for internal use only.

VERBOSE

Verbose logging.

DEBUG

Debug logging.

INFO

Informational logging.

WARN

Warning logging.

For use with recoverable failures.

ERROR

Error logging.

For use with unrecoverable failures.

FATAL

Fatal logging.

For use when aborting.

SILENT

For internal use only.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Performs the conversion.

Performs the conversion.

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.