aboutsummaryrefslogtreecommitdiff
path: root/src/storage/in_memory.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/in_memory.rs')
-rw-r--r--src/storage/in_memory.rs10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/storage/in_memory.rs b/src/storage/in_memory.rs
index 6fa8138..80e7fdf 100644
--- a/src/storage/in_memory.rs
+++ b/src/storage/in_memory.rs
@@ -2,13 +2,17 @@ use futures::FutureExt;
use crate::storage::*;
#[derive(Clone, Debug)]
-pub struct MemCreds {}
+pub struct FullMem {}
pub struct MemStore {}
pub struct MemRef {}
pub struct MemValue {}
-impl IRowBuilder for MemCreds {
- fn row_store(&self) -> Result<RowStore, Error> {
+impl IBuilder for FullMem {
+ fn row_store(&self) -> Result<RowStore, StorageError> {
+ unimplemented!();
+ }
+
+ fn blob_store(&self) -> Result<BlobStore, StorageError> {
unimplemented!();
}
}