Skip to content

Commit a48c5b4

Browse files
Philippe-Choletjswrenn
authored andcommitted
WithPosition: implement Debug
1 parent 9958f40 commit a48c5b4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/with_position.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use std::fmt;
12
use std::iter::{Fuse, FusedIterator, Peekable};
23

34
/// An iterator adaptor that wraps each element in an [`Position`].
@@ -14,6 +15,14 @@ where
1415
peekable: Peekable<Fuse<I>>,
1516
}
1617

18+
impl<I> fmt::Debug for WithPosition<I>
19+
where
20+
I: Iterator,
21+
Peekable<Fuse<I>>: fmt::Debug,
22+
{
23+
debug_fmt_fields!(WithPosition, handled_first, peekable);
24+
}
25+
1726
impl<I> Clone for WithPosition<I>
1827
where
1928
I: Clone + Iterator,

0 commit comments

Comments
 (0)