summaryrefslogtreecommitdiffstats
path: root/lib/core
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-01-05 01:09:12 +0100
committerMatthias Beyer <mail@beyermatthias.de>2019-02-15 20:53:29 +0100
commit83415e78b97baa615bb2129c034463fd57d6eb29 (patch)
tree0f185715f17ac4be1415eb296ee5b1b6a202fe8c /lib/core
parentf64b87b4a8817e399493e11bf6f6ebe13a042ca3 (diff)
Adapt to new libimagstore::iter::Entries API
Use Entries::into_storeid_iter() for transforming iterator into right type. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'lib/core')
-rw-r--r--lib/core/libimagstore/src/storeid.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/libimagstore/src/storeid.rs b/lib/core/libimagstore/src/storeid.rs
index 477ae550..754bc94b 100644
--- a/lib/core/libimagstore/src/storeid.rs
+++ b/lib/core/libimagstore/src/storeid.rs
@@ -309,7 +309,7 @@ impl<'a> StoreIdIteratorWithStore<'a> {
StoreIdIteratorWithStore(StoreIdIterator::new(iter), store)
}
- pub fn without_store(self) -> StoreIdIterator {
+ pub fn into_storeid_iter(self) -> StoreIdIterator {
self.0
}