Make MailIter pub

This commit is contained in:
Matthias Beyer 2017-06-07 17:39:23 +02:00
parent 41a12db528
commit 0219f00ec9
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ use libimagref::reference::Ref;
use std::marker::PhantomData;
struct MailIter<'a, I: 'a + Iterator<Item = Ref<'a>>> {
pub struct MailIter<'a, I: 'a + Iterator<Item = Ref<'a>>> {
_marker: PhantomData<&'a I>,
i: I,
}