Enum git2::TraceLevel [−][src]
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
No tracing will be performed.
Severe errors that may impact the program’s execution
Errors that do not impact the program’s execution
Warnings that suggest abnormal data
Informational messages about program execution
Detailed data that allows for debugging
Exceptionally detailed debugging data
Trait Implementations
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
Mutably borrows from an owned value. Read more