#[repr(u32)]pub enum cuvsLogLevel_t {
CUVS_LOG_LEVEL_TRACE = 0,
CUVS_LOG_LEVEL_DEBUG = 1,
CUVS_LOG_LEVEL_INFO = 2,
CUVS_LOG_LEVEL_WARN = 3,
CUVS_LOG_LEVEL_ERROR = 4,
CUVS_LOG_LEVEL_CRITICAL = 5,
CUVS_LOG_LEVEL_OFF = 6,
}Expand description
@brief An enum denoting log levels
Variants§
CUVS_LOG_LEVEL_TRACE = 0
CUVS_LOG_LEVEL_DEBUG = 1
CUVS_LOG_LEVEL_INFO = 2
CUVS_LOG_LEVEL_WARN = 3
CUVS_LOG_LEVEL_ERROR = 4
CUVS_LOG_LEVEL_CRITICAL = 5
CUVS_LOG_LEVEL_OFF = 6
Trait Implementations§
Source§impl Clone for cuvsLogLevel_t
impl Clone for cuvsLogLevel_t
Source§fn clone(&self) -> cuvsLogLevel_t
fn clone(&self) -> cuvsLogLevel_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for cuvsLogLevel_t
Source§impl Debug for cuvsLogLevel_t
impl Debug for cuvsLogLevel_t
impl Eq for cuvsLogLevel_t
Source§impl Hash for cuvsLogLevel_t
impl Hash for cuvsLogLevel_t
Source§impl PartialEq for cuvsLogLevel_t
impl PartialEq for cuvsLogLevel_t
Source§fn eq(&self, other: &cuvsLogLevel_t) -> bool
fn eq(&self, other: &cuvsLogLevel_t) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for cuvsLogLevel_t
Auto Trait Implementations§
impl Freeze for cuvsLogLevel_t
impl RefUnwindSafe for cuvsLogLevel_t
impl Send for cuvsLogLevel_t
impl Sync for cuvsLogLevel_t
impl Unpin for cuvsLogLevel_t
impl UnsafeUnpin for cuvsLogLevel_t
impl UnwindSafe for cuvsLogLevel_t
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