pub trait DebugIterator {
// Provided method
fn debug(self) -> IterDebug<Self>
where Self: Sized { ... }
}Expand description
Helper trait that lets you .debug() an iterator, like the other
combinators.
Automatically implemented for all IntoIterator where the item
is Debug.