imag/libimagentrylist/src/lister.rs

11 lines
183 B
Rust
Raw Normal View History

2016-03-26 13:41:34 +00:00
use libimagstore::store::FileLockEntry;
use result::Result;
pub trait Lister : Sized {
2016-03-26 13:41:34 +00:00
fn list<'a, I: Iterator<Item = FileLockEntry<'a>>>(&self, entries: I) -> Result<()>;
}