pub struct IterWrapper<I>(pub I)
where
I: Iterator;Expand description
A wrapper around I: Iterator to workaround trait implementation conflicts
Tuple Fields§
§0: IIterator
Trait Implementations§
Source§impl<I> Debug for IterWrapper<I>
impl<I> Debug for IterWrapper<I>
Auto Trait Implementations§
impl<I> Freeze for IterWrapper<I>where
I: Freeze,
impl<I> RefUnwindSafe for IterWrapper<I>where
I: RefUnwindSafe,
impl<I> Send for IterWrapper<I>where
I: Send,
impl<I> Sync for IterWrapper<I>where
I: Sync,
impl<I> Unpin for IterWrapper<I>where
I: Unpin,
impl<I> UnwindSafe for IterWrapper<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