summaryrefslogtreecommitdiffstats
path: root/lib/entry/libimagentryannotation/src/annotation_fetcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/entry/libimagentryannotation/src/annotation_fetcher.rs')
-rw-r--r--lib/entry/libimagentryannotation/src/annotation_fetcher.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/entry/libimagentryannotation/src/annotation_fetcher.rs b/lib/entry/libimagentryannotation/src/annotation_fetcher.rs
index dd6c2222..6fbd0078 100644
--- a/lib/entry/libimagentryannotation/src/annotation_fetcher.rs
+++ b/lib/entry/libimagentryannotation/src/annotation_fetcher.rs
@@ -17,18 +17,18 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
+use libimagstore::iter::Entries;
use libimagstore::store::Store;
-use libimagstore::storeid::StoreIdIterator;
use failure::Fallible as Result;
-pub trait AnnotationFetcher {
- fn all_annotations(&self) -> Result<StoreIdIterator>;
+pub trait AnnotationFetcher<'a> {
+ fn all_annotations(&'a self) -> Result<Entries<'a>>;
}
-impl<'a> AnnotationFetcher for Store {
- fn all_annotations(&self) -> Result<StoreIdIterator> {
- self.entries().map(|iter| iter.in_collection("annotation").without_store())
+impl<'a> AnnotationFetcher<'a> for Store {
+ fn all_annotations(&'a self) -> Result<Entries<'a>> {
+ self.entries().map(|iter| iter.in_collection("annotation"))
}
}