[][src]Enum qpid_proton_sys::pn_log_level_t

#[repr(C)]pub enum pn_log_level_t {
    PN_LEVEL_NONE,
    PN_LEVEL_CRITICAL,
    PN_LEVEL_ERROR,
    PN_LEVEL_WARNING,
    PN_LEVEL_INFO,
    PN_LEVEL_DEBUG,
    PN_LEVEL_TRACE,
    PN_LEVEL_FRAME,
    PN_LEVEL_RAW,
    PN_LEVEL_ALL,
}

Variants

PN_LEVEL_NONE

No level

PN_LEVEL_CRITICAL

Something is wrong and can't be fixed - probably a library bug

PN_LEVEL_ERROR

Something went wrong

PN_LEVEL_WARNING

Something unusual happened but not necessarily an error

PN_LEVEL_INFO

Something that might be interesting happened

PN_LEVEL_DEBUG

Something you might want to know about happened

PN_LEVEL_TRACE

Detail about something that happened

PN_LEVEL_FRAME

Protocol frame traces

PN_LEVEL_RAW

Raw protocol bytes

PN_LEVEL_ALL

Trait Implementations

impl Debug for pn_log_level_t[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.