pub enum AggLogLevel {
Trace = 0,
Debug = 1,
Info = 2,
Warn = 3,
Error = 4,
Fatal = 5,
}Expand description
Log level severity ordering.
Variants§
Trait Implementations§
Source§impl Clone for AggLogLevel
impl Clone for AggLogLevel
Source§fn clone(&self) -> AggLogLevel
fn clone(&self) -> AggLogLevel
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 AggLogLevel
impl Debug for AggLogLevel
Source§impl Ord for AggLogLevel
impl Ord for AggLogLevel
Source§fn cmp(&self, other: &AggLogLevel) -> Ordering
fn cmp(&self, other: &AggLogLevel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AggLogLevel
impl PartialEq for AggLogLevel
Source§impl PartialOrd for AggLogLevel
impl PartialOrd for AggLogLevel
impl Copy for AggLogLevel
impl Eq for AggLogLevel
impl StructuralPartialEq for AggLogLevel
Auto Trait Implementations§
impl Freeze for AggLogLevel
impl RefUnwindSafe for AggLogLevel
impl Send for AggLogLevel
impl Sync for AggLogLevel
impl Unpin for AggLogLevel
impl UnsafeUnpin for AggLogLevel
impl UnwindSafe for AggLogLevel
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