diff options
Diffstat (limited to 'src/storage/mod.rs')
-rw-r--r-- | src/storage/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/storage/mod.rs b/src/storage/mod.rs index 0fedfab..10149e9 100644 --- a/src/storage/mod.rs +++ b/src/storage/mod.rs @@ -157,8 +157,9 @@ pub trait IStore { #[derive(Clone,Debug,PartialEq,Eq,Hash)] pub struct UnicityBuffer(Vec<u8>); +#[async_trait] pub trait IBuilder: std::fmt::Debug { - fn build(&self) -> Result<Store, StorageError>; + async fn build(&self) -> Result<Store, StorageError>; /// Returns an opaque buffer that uniquely identifies this builder fn unique(&self) -> UnicityBuffer; |