pub enum LogLevel {
Debug,
Info,
Warn,
Error,
Fatal,
Panic,
}Expand description
Defines the log level. Options are debug, info, warn, error, fatal, and panic. This
setting has lower priority than the level set by the command-line arguments --debug, -l, or
--log-level.
Further documentation found in the GitLab docs.
Variants§
Trait Implementations§
impl StructuralPartialEq for LogLevel
Auto Trait Implementations§
impl Freeze for LogLevel
impl RefUnwindSafe for LogLevel
impl Send for LogLevel
impl Sync for LogLevel
impl Unpin for LogLevel
impl UnwindSafe for LogLevel
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more