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;
}