aboutsummaryrefslogtreecommitdiff
path: root/src/storage/garage.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/garage.rs')
-rw-r--r--src/storage/garage.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/storage/garage.rs b/src/storage/garage.rs
index 595a57c..46da4aa 100644
--- a/src/storage/garage.rs
+++ b/src/storage/garage.rs
@@ -27,6 +27,10 @@ impl IRowStore for GrgStore {
}
impl IRowRef for GrgRef {
+ fn clone_boxed(&self) -> RowRef {
+ unimplemented!();
+ }
+
fn set_value(&self, content: Vec<u8>) -> RowValue {
unimplemented!();
}
@@ -36,7 +40,7 @@ impl IRowRef for GrgRef {
fn rm(&self) -> AsyncResult<()> {
unimplemented!();
}
- fn poll(&self) -> AsyncResult<Option<RowValue>> {
+ fn poll(&self) -> AsyncResult<RowValue> {
unimplemented!();
}
}