Skip to main content

StorageEngine

Trait StorageEngine 

Source
pub trait StorageEngine: Send + Sync {
    type Value;

    // Required methods
    fn collection<'life0, 'life1, 'async_trait>(
        &'life0 self,
        id: &'life1 CollectionId,
    ) -> Pin<Box<dyn Future<Output = Result<Arc<dyn StorageCollection>, RetrievalError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn delete_all_collections<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<bool, MutationError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Associated Types§

Required Methods§

Source

fn collection<'life0, 'life1, 'async_trait>( &'life0 self, id: &'life1 CollectionId, ) -> Pin<Box<dyn Future<Output = Result<Arc<dyn StorageCollection>, RetrievalError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source

fn delete_all_collections<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<bool, MutationError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§