1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::store::StoreError;
use std::borrow::Cow;

/// The trait for data store tables where key/values are stored. Entry keys are string typed.
#[async_trait::async_trait]
pub trait BlobTableInterface<'a>: Send + Sync {
    async fn has(&self, key: &str) -> Result<bool, StoreError>;
    async fn get(&self, key: &str) -> Result<Cow<'a, [u8]>, StoreError>;
    async fn set(&mut self, key: &str, value: &[u8]) -> Result<(), StoreError>;
    async fn delete(&mut self, key: &str) -> Result<(), StoreError>;
    async fn delete_all(&mut self) -> Result<(), StoreError>;
    async fn list(&self) -> Result<Vec<String>, StoreError>;
}