Trait interface::DirectoryNode[][src]

pub trait DirectoryNode {
    fn indexer(&self) -> Arc<Box<dyn BlobIndexer + Send + Sync>>;
fn routing(&self) -> Arc<Box<dyn RoutingConfigManager + Send + Sync>>;
fn admin(&self) -> Arc<Box<dyn NodeAdminController + Send + Sync>>;
fn user(&self) -> Arc<Box<dyn UserManagement + Send + Sync>>;
fn query(&self) -> Arc<Box<dyn QueryExecutor + Send + Sync>>;
#[must_use] fn flush<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors