pub enum IntervalLogWriterError<E> {
SerializeError(E),
IoError(Error),
}
Expand description
Errors that can occur while writing a log.
Variants§
Trait Implementations§
source§impl<E: Debug> Debug for IntervalLogWriterError<E>
impl<E: Debug> Debug for IntervalLogWriterError<E>
source§impl<E: Error + 'static> Error for IntervalLogWriterError<E>
impl<E: Error + 'static> Error for IntervalLogWriterError<E>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<E> !RefUnwindSafe for IntervalLogWriterError<E>
impl<E> Send for IntervalLogWriterError<E>where E: Send,
impl<E> Sync for IntervalLogWriterError<E>where E: Sync,
impl<E> Unpin for IntervalLogWriterError<E>where E: Unpin,
impl<E> !UnwindSafe for IntervalLogWriterError<E>
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