pub enum CustomLogLevel {
Trace,
Debug,
Info,
Warn,
Error,
Fatal,
}Variants§
Trait Implementations§
Source§impl Clone for CustomLogLevel
impl Clone for CustomLogLevel
Source§fn clone(&self) -> CustomLogLevel
fn clone(&self) -> CustomLogLevel
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 CustomLogLevel
Source§impl Debug for CustomLogLevel
impl Debug for CustomLogLevel
impl Eq for CustomLogLevel
Source§impl PartialEq for CustomLogLevel
impl PartialEq for CustomLogLevel
Source§fn eq(&self, other: &CustomLogLevel) -> bool
fn eq(&self, other: &CustomLogLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CustomLogLevel
Auto Trait Implementations§
impl Freeze for CustomLogLevel
impl RefUnwindSafe for CustomLogLevel
impl Send for CustomLogLevel
impl Sync for CustomLogLevel
impl Unpin for CustomLogLevel
impl UnsafeUnpin for CustomLogLevel
impl UnwindSafe for CustomLogLevel
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