pub enum CliError {
Config(ConfigError),
IoError(String),
NoSchemaFiles(String),
DialectMismatch,
ConnectionError(String),
MigrationError(String),
MissingDriver {
dialect: &'static str,
feature: &'static str,
},
Other(String),
}Expand description
CLI errors
Variants§
Config(ConfigError)
Configuration error
IoError(String)
I/O error
NoSchemaFiles(String)
No schema files found
DialectMismatch
Dialect mismatch between snapshots
ConnectionError(String)
Database connection error
MigrationError(String)
Migration execution error
MissingDriver
Missing database driver
Other(String)
Other errors
Trait Implementations§
Source§impl Error for CliError
impl Error for CliError
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 Freeze for CliError
impl !RefUnwindSafe for CliError
impl Send for CliError
impl Sync for CliError
impl Unpin for CliError
impl !UnwindSafe for CliError
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