pub enum Error {
UnknownImportFormat(String),
Io(Error),
Csv(Error),
Zip(ZipError),
Json(Error),
}Available on crate feature
migrate only.Expand description
Error type for the migration library.
Variants§
UnknownImportFormat(String)
Error generated when an unknown import format is detected.
Io(Error)
Error generated by the io module.
Csv(Error)
Error generated by the csv library.
Zip(ZipError)
Error generated by the zip library.
Json(Error)
Error generated by the JSON library.
Trait Implementations§
source§impl Error for Error
impl Error for Error
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 !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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