pub struct MapFormatArray<I, T, M, D>(pub T, pub M)
where
T: Clone + Iterator<Item = Result<I, ErrorContext>>,
M: Clone + FnMut(I) -> D,
D: Debug;Tuple Fields§
§0: T§1: MTrait Implementations§
Auto Trait Implementations§
impl<I, T, M, D> Freeze for MapFormatArray<I, T, M, D>
impl<I, T, M, D> RefUnwindSafe for MapFormatArray<I, T, M, D>where
T: RefUnwindSafe,
M: RefUnwindSafe,
impl<I, T, M, D> Send for MapFormatArray<I, T, M, D>
impl<I, T, M, D> Sync for MapFormatArray<I, T, M, D>
impl<I, T, M, D> Unpin for MapFormatArray<I, T, M, D>
impl<I, T, M, D> UnwindSafe for MapFormatArray<I, T, M, D>where
T: UnwindSafe,
M: 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