#[non_exhaustive]pub enum LoggerLogLevel {
None,
Minimal,
Headers,
Body,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for LoggerLogLevel
impl Clone for LoggerLogLevel
Source§fn clone(&self) -> LoggerLogLevel
fn clone(&self) -> LoggerLogLevel
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 LoggerLogLevel
impl Debug for LoggerLogLevel
Source§impl Display for LoggerLogLevel
impl Display for LoggerLogLevel
Source§impl<'a> FromValue<'a> for LoggerLogLevel
impl<'a> FromValue<'a> for LoggerLogLevel
Source§type Checker = GenericValueTypeChecker<LoggerLogLevel>
type Checker = GenericValueTypeChecker<LoggerLogLevel>
Value type checker.
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moreSource§impl Hash for LoggerLogLevel
impl Hash for LoggerLogLevel
Source§impl Ord for LoggerLogLevel
impl Ord for LoggerLogLevel
Source§fn cmp(&self, other: &LoggerLogLevel) -> Ordering
fn cmp(&self, other: &LoggerLogLevel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LoggerLogLevel
impl PartialEq for LoggerLogLevel
Source§impl PartialOrd for LoggerLogLevel
impl PartialOrd for LoggerLogLevel
Source§impl StaticType for LoggerLogLevel
impl StaticType for LoggerLogLevel
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.Source§impl ToValue for LoggerLogLevel
impl ToValue for LoggerLogLevel
Source§impl ValueType for LoggerLogLevel
impl ValueType for LoggerLogLevel
Source§type Type = LoggerLogLevel
type Type = LoggerLogLevel
Type to get the
Type
from. Read moreimpl Copy for LoggerLogLevel
impl Eq for LoggerLogLevel
impl StructuralPartialEq for LoggerLogLevel
Auto Trait Implementations§
impl Freeze for LoggerLogLevel
impl RefUnwindSafe for LoggerLogLevel
impl Send for LoggerLogLevel
impl Sync for LoggerLogLevel
impl Unpin for LoggerLogLevel
impl UnwindSafe for LoggerLogLevel
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<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.