pub enum LogFormat {
Runner,
Text,
Json,
}
Expand description
Specifies the log format. Options are runner
, text
, and json
. This setting has lower
priority than the format set by command-line argument --log-format
. The default value is
runner
, which contains ANSI escape codes for coloring.
Further documentation found in the GitLab docs.
Variants§
Trait Implementations§
impl StructuralPartialEq for LogFormat
Auto Trait Implementations§
impl Freeze for LogFormat
impl RefUnwindSafe for LogFormat
impl Send for LogFormat
impl Sync for LogFormat
impl Unpin for LogFormat
impl UnwindSafe for LogFormat
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