Struct std::iter::FuseStable
[-]
[+]
[src]
pub struct Fuse<T> { // some fields omitted }
An iterator that yields None
forever after the underlying iterator
yields None
once.
Methods
impl<T> Fuse<T>
fn reset_fuse(&mut self)
Resets the fuse such that the next call to .next() or .next_back() will call the underlying iterator again even if it previously returned None.