pub enum ErrorVerbosity {
Minimal,
Standard,
Detailed,
}Expand description
Error verbosity levels
Variants§
Minimal
Only log error type
Standard
Log error type and general context
Detailed
Log all error details including specific claims
Trait Implementations§
Source§impl Clone for ErrorVerbosity
impl Clone for ErrorVerbosity
Source§fn clone(&self) -> ErrorVerbosity
fn clone(&self) -> ErrorVerbosity
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 ErrorVerbosity
impl Debug for ErrorVerbosity
Source§impl Default for ErrorVerbosity
impl Default for ErrorVerbosity
impl Copy for ErrorVerbosity
Auto Trait Implementations§
impl Freeze for ErrorVerbosity
impl RefUnwindSafe for ErrorVerbosity
impl Send for ErrorVerbosity
impl Sync for ErrorVerbosity
impl Unpin for ErrorVerbosity
impl UnwindSafe for ErrorVerbosity
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