Skip to content

Commit 8c5f630

Browse files
committed
Add missing use statements.
1 parent 8e61fb9 commit 8c5f630

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/adaptors/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub use self::map::MapResults;
1515
pub use self::multi_product::*;
1616

1717
use std::fmt;
18-
use std::iter::{Fuse, Peekable, FromIterator};
18+
use std::iter::{self, Fuse, Peekable, FromIterator};
1919
use std::marker::PhantomData;
2020
use crate::size_hint;
2121

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ pub mod structs {
9494
FilterMapOk,
9595
FilterOk,
9696
Product,
97+
Power,
9798
PutBack,
9899
Batching,
99100
MapInto,

0 commit comments

Comments
 (0)