DdlManagerConfigurator

Trait DdlManagerConfigurator 

Source
pub trait DdlManagerConfigurator<C>: Send + Sync {
    // Required method
    fn configure<'life0, 'async_trait>(
        &'life0 self,
        ddl_manager: DdlManager,
        ctx: C,
    ) -> Pin<Box<dyn Future<Output = Result<DdlManager, BoxedError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

A configurator that customizes or enhances a DdlManager.

Required Methods§

Source

fn configure<'life0, 'async_trait>( &'life0 self, ddl_manager: DdlManager, ctx: C, ) -> Pin<Box<dyn Future<Output = Result<DdlManager, BoxedError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Configures the given DdlManager using the provided [DdlManagerConfigureContext].

Implementors§