Enum xkbcommon_dl::xkb_log_level
source · #[repr(C)]pub enum xkb_log_level {
XKB_LOG_LEVEL_CRITICAL = 10,
XKB_LOG_LEVEL_ERROR = 20,
XKB_LOG_LEVEL_WARNING = 30,
XKB_LOG_LEVEL_INFO = 40,
XKB_LOG_LEVEL_DEBUG = 50,
}
Variants§
XKB_LOG_LEVEL_CRITICAL = 10
Log critical internal errors only.
XKB_LOG_LEVEL_ERROR = 20
Log all errors. */
XKB_LOG_LEVEL_WARNING = 30
Log warnings and errors.
XKB_LOG_LEVEL_INFO = 40
Log information, warnings, and errors.
XKB_LOG_LEVEL_DEBUG = 50
Log everything.
Trait Implementations§
source§impl Clone for xkb_log_level
impl Clone for xkb_log_level
source§fn clone(&self) -> xkb_log_level
fn clone(&self) -> xkb_log_level
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 xkb_log_level
impl Debug for xkb_log_level
source§impl PartialEq for xkb_log_level
impl PartialEq for xkb_log_level
source§fn eq(&self, other: &xkb_log_level) -> bool
fn eq(&self, other: &xkb_log_level) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for xkb_log_level
impl StructuralPartialEq for xkb_log_level
Auto Trait Implementations§
impl Freeze for xkb_log_level
impl RefUnwindSafe for xkb_log_level
impl Send for xkb_log_level
impl Sync for xkb_log_level
impl Unpin for xkb_log_level
impl UnwindSafe for xkb_log_level
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