#[repr(u32)]pub enum gpr_log_severity {
GPR_LOG_SEVERITY_DEBUG = 0,
GPR_LOG_SEVERITY_INFO = 1,
GPR_LOG_SEVERITY_ERROR = 2,
}
Expand description
The severity of a log message - use the #defines below when calling into gpr_log to additionally supply file and line data
Variants§
Trait Implementations§
Source§impl Clone for gpr_log_severity
impl Clone for gpr_log_severity
Source§fn clone(&self) -> gpr_log_severity
fn clone(&self) -> gpr_log_severity
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for gpr_log_severity
impl Debug for gpr_log_severity
Source§impl Hash for gpr_log_severity
impl Hash for gpr_log_severity
Source§impl PartialEq for gpr_log_severity
impl PartialEq for gpr_log_severity
impl Copy for gpr_log_severity
impl Eq for gpr_log_severity
impl StructuralPartialEq for gpr_log_severity
Auto Trait Implementations§
impl Freeze for gpr_log_severity
impl RefUnwindSafe for gpr_log_severity
impl Send for gpr_log_severity
impl Sync for gpr_log_severity
impl Unpin for gpr_log_severity
impl UnwindSafe for gpr_log_severity
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more