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
sourceimpl Clone for GlibLoggerFormat
impl Clone for GlibLoggerFormat
sourcefn clone(&self) -> GlibLoggerFormat
fn clone(&self) -> GlibLoggerFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GlibLoggerFormat
impl Debug for GlibLoggerFormat
sourceimpl PartialEq<GlibLoggerFormat> for GlibLoggerFormat
impl PartialEq<GlibLoggerFormat> for GlibLoggerFormat
sourcefn 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 ==
. Read more
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more