pub enum ErrorStackStyle<'a> {
Inline,
Stacked {
indent: usize,
},
Custom(FmtErrorClosure<'a>),
}
Expand description
An error stack style.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ErrorStackStyle<'a>
impl<'a> !RefUnwindSafe for ErrorStackStyle<'a>
impl<'a> !Send for ErrorStackStyle<'a>
impl<'a> !Sync for ErrorStackStyle<'a>
impl<'a> Unpin for ErrorStackStyle<'a>
impl<'a> !UnwindSafe for ErrorStackStyle<'a>
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