[][src]Enum diesel::migration::MigrationError

pub enum MigrationError {
    MigrationDirectoryNotFound,
    UnknownMigrationFormat(PathBuf),
    IoError(Error),
    UnknownMigrationVersion(String),
    NoMigrationRun,
    // some variants omitted
}

Errors that occur while preparing to run migrations

Variants

The migration directory wasn't found

Provided migration was in an unknown format

General system IO error

Provided migration had an incompatible version number

No migrations had to be/ could be run

Trait Implementations

impl PartialEq<MigrationError> for MigrationError
[src]

This method tests for !=.

impl From<Error> for MigrationError
[src]

impl From<MigrationError> for RunMigrationsError
[src]

impl Display for MigrationError
[src]

impl Debug for MigrationError
[src]

impl Error for MigrationError
[src]

Deprecating in 1.33.0

: replaced by Error::source, which can support downcasting

The lower-level cause of this error, if any. Read more

The lower-level source of this error, if any. Read more

Auto Trait Implementations

impl Send for MigrationError

impl Sync for MigrationError

Blanket Implementations

impl<T> IntoSql for T
[src]

Convert self to an expression for Diesel's query builder. Read more

Convert &self to an expression for Diesel's query builder. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]