Enum androidy_log::LogPriority[][src]

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

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

impl Clone for LogPriority[src]

impl Copy for LogPriority[src]

impl Debug for LogPriority[src]

impl Eq for LogPriority[src]

impl PartialEq<LogPriority> for LogPriority[src]

impl StructuralEq for LogPriority[src]

impl StructuralPartialEq for LogPriority[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.