diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-02 11:51:03 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-02 11:51:03 +0100 |
commit | 553ea25f1854706b60ce6f087545968533ef6140 (patch) | |
tree | 9affda3665b1cbc6a7aca82cdc789555788321ba /src/storage/garage.rs | |
parent | 1f28832deaff3a2319cc88d5a83ffe506b784fc8 (diff) | |
download | aerogramme-553ea25f1854706b60ce6f087545968533ef6140.tar.gz aerogramme-553ea25f1854706b60ce6f087545968533ef6140.zip |
gradually implement our interface
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 c2ca1d3..dfee88d 100644 --- a/src/storage/garage.rs +++ b/src/storage/garage.rs @@ -6,8 +6,12 @@ pub struct GrgStore {} pub struct GrgRef {} pub struct GrgValue {} -impl IRowBuilder for GrgCreds { - fn row_store(&self) -> Result<RowStore, Error> { +impl IBuilder for GrgCreds { + fn row_store(&self) -> Result<RowStore, StorageError> { + unimplemented!(); + } + + fn blob_store(&self) -> Result<BlobStore, StorageError> { unimplemented!(); } } |