pub enum LoggingStyle {
Tracing,
Log,
NoneKnown,
Unknown,
}Expand description
The logging style inferred from dependencies.
Variants§
Tracing
The repo uses tracing.
Log
The repo uses the log facade.
NoneKnown
The repo does not appear to use logging crates.
Unknown
The style has not been established yet.
Trait Implementations§
Source§impl Clone for LoggingStyle
impl Clone for LoggingStyle
Source§fn clone(&self) -> LoggingStyle
fn clone(&self) -> LoggingStyle
Returns a duplicate 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 LoggingStyle
impl Debug for LoggingStyle
Source§impl<'de> Deserialize<'de> for LoggingStyle
impl<'de> Deserialize<'de> for LoggingStyle
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LoggingStyle
impl PartialEq for LoggingStyle
Source§impl Serialize for LoggingStyle
impl Serialize for LoggingStyle
impl Copy for LoggingStyle
impl Eq for LoggingStyle
impl StructuralPartialEq for LoggingStyle
Auto Trait Implementations§
impl Freeze for LoggingStyle
impl RefUnwindSafe for LoggingStyle
impl Send for LoggingStyle
impl Sync for LoggingStyle
impl Unpin for LoggingStyle
impl UnsafeUnpin for LoggingStyle
impl UnwindSafe for LoggingStyle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.