2017-02-23 13:11:32 +00:00
|
|
|
//
|
|
|
|
// imag - the personal information management suite for the commandline
|
2019-01-03 01:32:07 +00:00
|
|
|
// Copyright (C) 2015-2019 Matthias Beyer <mail@beyermatthias.de> and contributors
|
2017-02-23 13:11:32 +00:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; version
|
|
|
|
// 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
//
|
|
|
|
|
2019-01-05 00:09:12 +00:00
|
|
|
use libimagstore::iter::Entries;
|
2017-02-23 13:11:32 +00:00
|
|
|
use libimagstore::store::Store;
|
|
|
|
|
2018-10-30 17:40:51 +00:00
|
|
|
use failure::Fallible as Result;
|
2017-02-23 13:11:32 +00:00
|
|
|
|
2019-01-05 00:09:12 +00:00
|
|
|
pub trait AnnotationFetcher<'a> {
|
|
|
|
fn all_annotations(&'a self) -> Result<Entries<'a>>;
|
2017-02-23 13:11:32 +00:00
|
|
|
}
|
|
|
|
|
2019-01-05 00:09:12 +00:00
|
|
|
impl<'a> AnnotationFetcher<'a> for Store {
|
|
|
|
fn all_annotations(&'a self) -> Result<Entries<'a>> {
|
2019-05-18 11:37:46 +00:00
|
|
|
self.entries()?.in_collection("annotation")
|
2017-02-23 13:11:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|