diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-19 19:02:22 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-19 19:02:22 +0100 |
commit | c75f2d91ff969dd791cb476031ee80870c6ad61a (patch) | |
tree | b8da577a6a932d82a28d29b7ab98f9cc696d4ff5 /src/storage/garage.rs | |
parent | 3d41f40dc8cd6bdfa7a9279ab1959564d06eefaf (diff) | |
download | aerogramme-c75f2d91ff969dd791cb476031ee80870c6ad61a.tar.gz aerogramme-c75f2d91ff969dd791cb476031ee80870c6ad61a.zip |
implemented an in memory storage
Diffstat (limited to 'src/storage/garage.rs')
-rw-r--r-- | src/storage/garage.rs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/storage/garage.rs b/src/storage/garage.rs index ff37287..f202067 100644 --- a/src/storage/garage.rs +++ b/src/storage/garage.rs @@ -56,14 +56,18 @@ impl IStore for GarageStore { unimplemented!(); } + async fn row_rm_single(&self, entry: &RowRef) -> Result<(), StorageError> { + unimplemented!(); + } + async fn blob_fetch(&self, blob_ref: &BlobRef) -> Result<BlobVal, StorageError> { unimplemented!(); } - async fn blob_insert(&self, blob_val: &BlobVal) -> Result<BlobVal, StorageError> { + async fn blob_insert(&self, blob_val: &BlobVal) -> Result<(), StorageError> { unimplemented!(); } - async fn blob_copy(&self, src: &BlobRef, dst: &BlobRef) -> Result<BlobVal, StorageError> { + async fn blob_copy(&self, src: &BlobRef, dst: &BlobRef) -> Result<(), StorageError> { unimplemented!(); } |