#[repr(u32)]pub enum TraceLogLevel {
LOG_ALL = 0,
LOG_TRACE = 1,
LOG_DEBUG = 2,
LOG_INFO = 3,
LOG_WARNING = 4,
LOG_ERROR = 5,
LOG_FATAL = 6,
LOG_NONE = 7,
}Variants§
LOG_ALL = 0
LOG_TRACE = 1
LOG_DEBUG = 2
LOG_INFO = 3
LOG_WARNING = 4
LOG_ERROR = 5
LOG_FATAL = 6
LOG_NONE = 7
Trait Implementations§
Source§impl Clone for TraceLogLevel
impl Clone for TraceLogLevel
Source§fn clone(&self) -> TraceLogLevel
fn clone(&self) -> TraceLogLevel
Returns a duplicate 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 TraceLogLevel
impl Debug for TraceLogLevel
Source§impl Default for TraceLogLevel
impl Default for TraceLogLevel
Source§impl Hash for TraceLogLevel
impl Hash for TraceLogLevel
Source§impl PartialEq for TraceLogLevel
impl PartialEq for TraceLogLevel
impl Copy for TraceLogLevel
impl Eq for TraceLogLevel
impl StructuralPartialEq for TraceLogLevel
Auto Trait Implementations§
impl Freeze for TraceLogLevel
impl RefUnwindSafe for TraceLogLevel
impl Send for TraceLogLevel
impl Sync for TraceLogLevel
impl Unpin for TraceLogLevel
impl UnwindSafe for TraceLogLevel
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