Enum grpcio_sys::gpr_log_severity[][src]

#[repr(u32)]pub enum gpr_log_severity {
    GPR_LOG_SEVERITY_DEBUG,
    GPR_LOG_SEVERITY_INFO,
    GPR_LOG_SEVERITY_ERROR,
}

The severity of a log message - use the #defines below when calling into gpr_log to additionally supply file and line data

Variants

GPR_LOG_SEVERITY_DEBUG
GPR_LOG_SEVERITY_INFO
GPR_LOG_SEVERITY_ERROR

Trait Implementations

impl Clone for gpr_log_severity[src]

impl Copy for gpr_log_severity[src]

impl Debug for gpr_log_severity[src]

impl Eq for gpr_log_severity[src]

impl Hash for gpr_log_severity[src]

impl PartialEq<gpr_log_severity> for gpr_log_severity[src]

impl StructuralEq for gpr_log_severity[src]

impl StructuralPartialEq for gpr_log_severity[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.