pub enum MaxTraceLevelCli {
Trace,
Debug,
Info,
Warn,
Error,
Off,
}Variants§
Trace
All trace events.
Debug
Debug and higher.
Info
Info and higher.
Warn
Warn and higher.
Error
Error events only.
Off
No tracing.
Trait Implementations§
Source§impl Clone for MaxTraceLevelCli
impl Clone for MaxTraceLevelCli
Source§fn clone(&self) -> MaxTraceLevelCli
fn clone(&self) -> MaxTraceLevelCli
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 MaxTraceLevelCli
impl Debug for MaxTraceLevelCli
Source§impl From<MaxTraceLevelCli> for MaxTraceLevel
impl From<MaxTraceLevelCli> for MaxTraceLevel
Source§fn from(cli: MaxTraceLevelCli) -> Self
fn from(cli: MaxTraceLevelCli) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MaxTraceLevelCli
impl PartialEq for MaxTraceLevelCli
Source§impl ValueEnum for MaxTraceLevelCli
impl ValueEnum for MaxTraceLevelCli
impl Copy for MaxTraceLevelCli
impl Eq for MaxTraceLevelCli
impl StructuralPartialEq for MaxTraceLevelCli
Auto Trait Implementations§
impl Freeze for MaxTraceLevelCli
impl RefUnwindSafe for MaxTraceLevelCli
impl Send for MaxTraceLevelCli
impl Sync for MaxTraceLevelCli
impl Unpin for MaxTraceLevelCli
impl UnwindSafe for MaxTraceLevelCli
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.