pub trait Scanner { // Required method fn iter(&mut self) -> Box<dyn Iterator<Item = Result<Entry, Error>> + '_>; }