pub trait DirProviderBuilder<R: Runtime> {
    fn build(
        &self,
        runtime: R,
        circmgr: Arc<CircMgr<R>>,
        config: DirMgrConfig
    ) -> Result<Arc<dyn DirProvider + 'static>>; }
Expand description

An object that knows how to construct some kind of DirProvider.

Note that this type is only actually exposed when the experimental-api feature is enabled.

Required Methods

Implementors