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
sourceimpl Clone for TraceLevel
impl Clone for TraceLevel
sourcefn clone(&self) -> TraceLevel
fn clone(&self) -> TraceLevel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more