Enum glib::GlibLoggerFormat
source · pub enum GlibLoggerFormat {
Plain,
LineAndFile,
Structured,
}
Expand description
Enumeration of the possible formatting behaviours for a
GlibLogger
.
In order to use this type, glib
must be built with the log
feature
enabled.
Variants§
Plain
A simple format, writing only the message on output.
LineAndFile
A simple format, writing file, line and message on output.
Structured
A logger using glib structured logging.
Trait Implementations§
source§impl Clone for GlibLoggerFormat
impl Clone for GlibLoggerFormat
source§fn clone(&self) -> GlibLoggerFormat
fn clone(&self) -> GlibLoggerFormat
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 GlibLoggerFormat
impl Debug for GlibLoggerFormat
source§impl PartialEq<GlibLoggerFormat> for GlibLoggerFormat
impl PartialEq<GlibLoggerFormat> for GlibLoggerFormat
source§fn eq(&self, other: &GlibLoggerFormat) -> bool
fn eq(&self, other: &GlibLoggerFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.