Enum diesel::migrations::MigrationError [] [src]

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

Variants

Trait Implementations

impl Debug for MigrationError
[src]

Formats the value using the given formatter.

impl Error for MigrationError
[src]

A short description of the error. Read more

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

impl Display for MigrationError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for MigrationError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<Error> for MigrationError
[src]

Performs the conversion.