pub struct UniqueIterator<I>where
I: BackendIter,{ /* private fields */ }
Expand description
An iterator which wraps another iterator and yields unique items. It optionally takes a max number of iterations if the wrapped iterator never returns.
Implementations§
Auto Trait Implementations§
impl<I> Freeze for UniqueIterator<I>where
I: Freeze,
impl<I> RefUnwindSafe for UniqueIterator<I>where
I: RefUnwindSafe,
impl<I> Send for UniqueIterator<I>where
I: Send,
impl<I> Sync for UniqueIterator<I>where
I: Sync,
impl<I> Unpin for UniqueIterator<I>where
I: Unpin,
impl<I> UnwindSafe for UniqueIterator<I>where
I: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more