pub trait WrapMigrationError<T, E> {
    fn migration_err(
        self,
        msg: &str,
        report: Option<&[Migration]>
    ) -> Result<T, Error>; }

Required Methods

Implementations on Foreign Types

Implementors