pub struct Map<I, F> { /* private fields */ }Trait Implementations§
Source§impl<I, F, T, E> AsyncLendingIterator for Map<I, F>
impl<I, F, T, E> AsyncLendingIterator for Map<I, F>
Auto Trait Implementations§
impl<I, F> Freeze for Map<I, F>
impl<I, F> RefUnwindSafe for Map<I, F>where
I: RefUnwindSafe,
F: RefUnwindSafe,
impl<I, F> Send for Map<I, F>
impl<I, F> Sync for Map<I, F>
impl<I, F> Unpin for Map<I, F>
impl<I, F> UnwindSafe for Map<I, F>where
I: UnwindSafe,
F: UnwindSafe,
Blanket Implementations§
Source§impl<I> AsyncLendingIteratorExt for Iwhere
I: AsyncLendingIterator,
impl<I> AsyncLendingIteratorExt for Iwhere
I: AsyncLendingIterator,
fn map_ok<F, O>(self, func: F) -> MapOk<Self, F>
fn map_err<F, O>(self, func: F) -> MapErr<Self, F>
fn try_map<F, T, E>(self, func: F) -> Map<Self, F>
fn try_collect<T>(self) -> impl Future<Output = Result<T, Self::Err>> + Send
fn try_collect_into<T>( self, collection: &mut T, ) -> impl Future<Output = Result<&mut T, Self::Err>> + Send
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