pub trait CatalogManagerConfigurator<C>: Send + Sync {
// Required method
fn configure<'life0, 'async_trait>(
&'life0 self,
builder: KvBackendCatalogManagerBuilder,
ctx: C,
) -> Pin<Box<dyn Future<Output = Result<KvBackendCatalogManagerBuilder, BoxedError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
The configurator that customizes or enhances the KvBackendCatalogManagerBuilder.