pub enum ErrorFmtLoD {
Compact,
SubmitReport,
Medium,
Full,
Debug,
}Expand description
Level of detail for error formatting output.
Variants§
Compact
Minimal output — key fields only.
SubmitReport
Tailored for issue submission reports (no color, clean text).
Medium
Balanced detail — the default for most uses.
Full
Full output — all available information.
Debug
Structural debug output for debugging the error system itself.
Trait Implementations§
Source§impl Clone for ErrorFmtLoD
impl Clone for ErrorFmtLoD
Source§fn clone(&self) -> ErrorFmtLoD
fn clone(&self) -> ErrorFmtLoD
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 ErrorFmtLoD
impl Debug for ErrorFmtLoD
Source§impl Default for ErrorFmtLoD
impl Default for ErrorFmtLoD
Source§fn default() -> ErrorFmtLoD
fn default() -> ErrorFmtLoD
Returns the “default value” for a type. Read more
impl Copy for ErrorFmtLoD
Auto Trait Implementations§
impl Freeze for ErrorFmtLoD
impl RefUnwindSafe for ErrorFmtLoD
impl Send for ErrorFmtLoD
impl Sync for ErrorFmtLoD
impl Unpin for ErrorFmtLoD
impl UnwindSafe for ErrorFmtLoD
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