pub enum Error<P> {
Io(P, Error),
Parse(P, Box<dyn Error + Send + Sync>),
Write(P, Box<dyn Error + Send + Sync>),
Serde(P, Box<dyn Error + Send + Sync>),
}Expand description
The error type for this library.
Variants§
Io(P, Error)
An IO error.
Parse(P, Box<dyn Error + Send + Sync>)
Parse error.
Write(P, Box<dyn Error + Send + Sync>)
Write error.
Serde(P, Box<dyn Error + Send + Sync>)
Serde error.
Trait Implementations§
Source§impl<P: Debug> Error for Error<P>
impl<P: Debug> Error for Error<P>
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<P> Freeze for Error<P>where
P: Freeze,
impl<P> !RefUnwindSafe for Error<P>
impl<P> Send for Error<P>where
P: Send,
impl<P> Sync for Error<P>where
P: Sync,
impl<P> Unpin for Error<P>where
P: Unpin,
impl<P> !UnwindSafe for Error<P>
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