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 ==
.impl Copy for GlibLoggerFormat
impl Eq for GlibLoggerFormat
impl StructuralEq for GlibLoggerFormat
impl StructuralPartialEq for GlibLoggerFormat
Auto Trait Implementations§
impl RefUnwindSafe for GlibLoggerFormat
impl Send for GlibLoggerFormat
impl Sync for GlibLoggerFormat
impl Unpin for GlibLoggerFormat
impl UnwindSafe for GlibLoggerFormat
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