Enum serde_loader::error::Error
source · [−]pub enum Error<E1 = Infallible, E2 = Infallible> {
Io(Error),
FileDump(FileDumpError<E1>),
FileLoad(FileLoadError<E2>),
}
Variants
Io(Error)
FileDump(FileDumpError<E1>)
FileLoad(FileLoadError<E2>)
Trait Implementations
sourceimpl<E1, E2> Error for Error<E1, E2> where
E1: Debug + Display,
E2: Debug + Display,
impl<E1, E2> Error for Error<E1, E2> where
E1: Debug + Display,
E2: Debug + Display,
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl<E1, E2> From<FileDumpError<E1>> for Error<E1, E2>
impl<E1, E2> From<FileDumpError<E1>> for Error<E1, E2>
sourcefn from(v: FileDumpError<E1>) -> Self
fn from(v: FileDumpError<E1>) -> Self
Converts to this type from the input type.
sourceimpl<E1, E2> From<FileLoadError<E2>> for Error<E1, E2>
impl<E1, E2> From<FileLoadError<E2>> for Error<E1, E2>
sourcefn from(v: FileLoadError<E2>) -> Self
fn from(v: FileLoadError<E2>) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl<E1 = Infallible, E2 = Infallible> !RefUnwindSafe for Error<E1, E2>
impl<E1, E2> Send for Error<E1, E2> where
E1: Send,
E2: Send,
impl<E1, E2> Sync for Error<E1, E2> where
E1: Sync,
E2: Sync,
impl<E1, E2> Unpin for Error<E1, E2> where
E1: Unpin,
E2: Unpin,
impl<E1 = Infallible, E2 = Infallible> !UnwindSafe for Error<E1, E2>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more