Enum glib::GlibLoggerDomain
source · [−]pub enum GlibLoggerDomain {
None,
CrateTarget,
CratePath,
}Expand description
Enumeration of the possible domain handling behaviours for a
GlibLogger.
In order to use this type, glib must be built with the log feature
enabled.
Variants
None
Logs will have no domain specified.
CrateTarget
Logs will use the target of the log crate as a domain; this allows
Rust code, like warn!(target: "my-domain", "..."); to log to the glib
logger using the specified domain.
CratePath
Logs will use the crate path as the log domain.
Trait Implementations
sourceimpl Clone for GlibLoggerDomain
impl Clone for GlibLoggerDomain
sourcefn clone(&self) -> GlibLoggerDomain
fn clone(&self) -> GlibLoggerDomain
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for GlibLoggerDomain
impl Debug for GlibLoggerDomain
sourceimpl PartialEq<GlibLoggerDomain> for GlibLoggerDomain
impl PartialEq<GlibLoggerDomain> for GlibLoggerDomain
sourcefn eq(&self, other: &GlibLoggerDomain) -> bool
fn eq(&self, other: &GlibLoggerDomain) -> bool
impl Copy for GlibLoggerDomain
impl Eq for GlibLoggerDomain
impl StructuralEq for GlibLoggerDomain
impl StructuralPartialEq for GlibLoggerDomain
Auto Trait Implementations
impl RefUnwindSafe for GlibLoggerDomain
impl Send for GlibLoggerDomain
impl Sync for GlibLoggerDomain
impl Unpin for GlibLoggerDomain
impl UnwindSafe for GlibLoggerDomain
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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