Make "new" function public
This commit is contained in:
parent
f22bcf0c74
commit
4796d5caa4
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ pub mod iter {
|
||||||
|
|
||||||
impl<I: Iterator<Item = Entry>> ToHtmlIterator<I> {
|
impl<I: Iterator<Item = Entry>> ToHtmlIterator<I> {
|
||||||
|
|
||||||
fn new(i: I) -> ToHtmlIterator<I> {
|
pub fn new(i: I) -> ToHtmlIterator<I> {
|
||||||
ToHtmlIterator { i: i }
|
ToHtmlIterator { i: i }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue