pub enum DltLogLevel {
Fatal = 1,
Error = 2,
Warn = 3,
Info = 4,
Debug = 5,
Verbose = 6,
}
Expand description
Log level for dlt log messages.
Variants§
Fatal = 1
Fatal system error.
Error = 2
SWC error.
Warn = 3
Correct behavior cannot be ensured.
Info = 4
Message of LogLevel type “Information”.
Debug = 5
Message of LogLevel type “Debug”.
Verbose = 6
Message of LogLevel type “Verbose”.
Trait Implementations§
Source§impl Clone for DltLogLevel
impl Clone for DltLogLevel
Source§fn clone(&self) -> DltLogLevel
fn clone(&self) -> DltLogLevel
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 DltLogLevel
impl Debug for DltLogLevel
Source§impl Hash for DltLogLevel
impl Hash for DltLogLevel
Source§impl Ord for DltLogLevel
impl Ord for DltLogLevel
Source§fn cmp(&self, other: &DltLogLevel) -> Ordering
fn cmp(&self, other: &DltLogLevel) -> 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 DltLogLevel
impl PartialEq for DltLogLevel
Source§impl PartialOrd for DltLogLevel
impl PartialOrd for DltLogLevel
impl Copy for DltLogLevel
impl Eq for DltLogLevel
impl StructuralPartialEq for DltLogLevel
Auto Trait Implementations§
impl Freeze for DltLogLevel
impl RefUnwindSafe for DltLogLevel
impl Send for DltLogLevel
impl Sync for DltLogLevel
impl Unpin for DltLogLevel
impl UnwindSafe for DltLogLevel
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