Skip to main content

MigrationExecuteExt

Trait MigrationExecuteExt 

Source
pub trait MigrationExecuteExt {
    // Required method
    fn execute<'a, E, S>(
        &'a self,
        executor: E,
        schema: S,
    ) -> impl Future<Output = Result<(), DbError>> + 'a
       where E: DbExecutorArg + 'a,
             S: Into<Schema> + 'a;
}

Required Methods§

Source

fn execute<'a, E, S>( &'a self, executor: E, schema: S, ) -> impl Future<Output = Result<(), DbError>> + 'a
where E: DbExecutorArg + 'a, S: Into<Schema> + 'a,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§