Make fn pub
This commit is contained in:
parent
7806cf34c1
commit
e4e5fafce2
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ pub mod iter {
|
||||||
pub struct GetIter<'a>(IntoIter<Link>, &'a Store);
|
pub struct GetIter<'a>(IntoIter<Link>, &'a Store);
|
||||||
|
|
||||||
impl<'a> GetIter<'a> {
|
impl<'a> GetIter<'a> {
|
||||||
fn new(i: IntoIter<Link>, store: &'a Store) -> GetIter<'a> {
|
pub fn new(i: IntoIter<Link>, store: &'a Store) -> GetIter<'a> {
|
||||||
GetIter(i, store)
|
GetIter(i, store)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue