From e4e5fafce2dfd4084e2847c511b8fc30f90986f8 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 20 Oct 2016 14:11:22 +0200 Subject: [PATCH] Make fn pub --- libimagentrylink/src/internal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimagentrylink/src/internal.rs b/libimagentrylink/src/internal.rs index 1627db8d..48f5d819 100644 --- a/libimagentrylink/src/internal.rs +++ b/libimagentrylink/src/internal.rs @@ -115,7 +115,7 @@ pub mod iter { pub struct GetIter<'a>(IntoIter, &'a Store); impl<'a> GetIter<'a> { - fn new(i: IntoIter, store: &'a Store) -> GetIter<'a> { + pub fn new(i: IntoIter, store: &'a Store) -> GetIter<'a> { GetIter(i, store) }