Enum git2::TraceLevel
source · pub enum TraceLevel {
None,
Fatal,
Error,
Warn,
Info,
Debug,
Trace,
}
Expand description
Available tracing levels. When tracing is set to a particular level, callers will be provided tracing at the given level and all lower levels.
Variants§
None
No tracing will be performed.
Fatal
Severe errors that may impact the program’s execution
Error
Errors that do not impact the program’s execution
Warn
Warnings that suggest abnormal data
Info
Informational messages about program execution
Debug
Detailed data that allows for debugging
Trace
Exceptionally detailed debugging data
Trait Implementations§
source§impl Clone for TraceLevel
impl Clone for TraceLevel
source§fn clone(&self) -> TraceLevel
fn clone(&self) -> TraceLevel
Returns a copy 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 TraceLevel
impl Debug for TraceLevel
impl Copy for TraceLevel
Auto Trait Implementations§
impl RefUnwindSafe for TraceLevel
impl Send for TraceLevel
impl Sync for TraceLevel
impl Unpin for TraceLevel
impl UnwindSafe for TraceLevel
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