pub struct AsyncCowIter<'a> { /* private fields */ }
Expand description
Asynchronous COW record iterator.
Implementations§
Source§impl AsyncCowIter<'_>
impl AsyncCowIter<'_>
Sourcepub async fn next<F, R>(&mut self, f: F) -> Option<R>
pub async fn next<F, R>(&mut self, f: F) -> Option<R>
Advances the iterator and returns the next value.
WakeUp::on
must be properly set to make this work.
See also CowIter::next
.
Auto Trait Implementations§
impl<'a> Freeze for AsyncCowIter<'a>
impl<'a> RefUnwindSafe for AsyncCowIter<'a>
impl<'a> Send for AsyncCowIter<'a>
impl<'a> Sync for AsyncCowIter<'a>
impl<'a> Unpin for AsyncCowIter<'a>
impl<'a> UnwindSafe for AsyncCowIter<'a>
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