pub struct MapErrGrinder<T: Grinder, F, E> { /* private fields */ }
Trait Implementations§
Source§impl<T, E, F> Grinder for MapErrGrinder<T, F, E>
impl<T, E, F> Grinder for MapErrGrinder<T, F, E>
type Item = <T as Grinder>::Item
type Error = E
fn next(&mut self) -> Self::Item
fn emit(&mut self, err: E)
fn vent<F, E>(self, f: F) -> Vent<Self, F, E>
fn unwrap(self) -> Unwrap<Self>where
Self: Sized,
fn map_err<F, E>(self, f: F) -> MapErrGrinder<Self, F, E>
fn peekable(self) -> Peekable<Self>where
Self: Sized,
fn lookaheadable(self) -> Lookahead<Self>where
Self: Sized,
fn filter<F>(self, f: F) -> Filter<Self, F>
Auto Trait Implementations§
impl<T, F, E> Freeze for MapErrGrinder<T, F, E>
impl<T, F, E> RefUnwindSafe for MapErrGrinder<T, F, E>
impl<T, F, E> Send for MapErrGrinder<T, F, E>
impl<T, F, E> Sync for MapErrGrinder<T, F, E>
impl<T, F, E> Unpin for MapErrGrinder<T, F, E>
impl<T, F, E> UnwindSafe for MapErrGrinder<T, F, E>
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