Enum sqlx_core::migrate::MigrateError [−][src]
#[non_exhaustive]
pub enum MigrateError {
Execute(Error),
Source(BoxDynError),
VersionMissing(i64),
VersionMismatch(i64),
InvalidMixReversibleAndSimple,
Dirty(i64),
}Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Execute(Error)Tuple Fields of Execute
0: ErrorSource(BoxDynError)Tuple Fields of Source
0: BoxDynErrorVersionMissing(i64)Tuple Fields of VersionMissing
0: i64VersionMismatch(i64)Tuple Fields of VersionMismatch
0: i64Dirty(i64)Tuple Fields of Dirty
0: i64Trait Implementations
Performs the conversion.