diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-02 12:58:45 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-02 12:58:45 +0100 |
commit | 1e192f93d5bf544c82fe91fb799d77e8b5d53afe (patch) | |
tree | c069a436429cdea4ada253e6187b2b26aa2852e0 /src/storage/garage.rs | |
parent | 3b363b2a7803564231e001c215ab427c99c9435b (diff) | |
download | aerogramme-1e192f93d5bf544c82fe91fb799d77e8b5d53afe.tar.gz aerogramme-1e192f93d5bf544c82fe91fb799d77e8b5d53afe.zip |
make all our objects send+sync
Diffstat (limited to 'src/storage/garage.rs')
-rw-r--r-- | src/storage/garage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/garage.rs b/src/storage/garage.rs index 6dea00c..595a57c 100644 --- a/src/storage/garage.rs +++ b/src/storage/garage.rs @@ -21,7 +21,7 @@ impl IBuilders for GrgCreds { } impl IRowStore for GrgStore { - fn new_row(&self, partition: &str, sort: &str) -> RowRef { + fn row(&self, partition: &str, sort: &str) -> RowRef { unimplemented!(); } } |