pub struct Filter<T: Grinder, F> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<T, F> Grinder for Filter<T, F>
impl<T, F> Grinder for Filter<T, F>
type Item = <T as Grinder>::Item
type Error = <T as Grinder>::Error
fn emit(&mut self, err: Self::Error)
fn next(&mut self) -> Self::Item
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> Freeze for Filter<T, F>
impl<T, F> RefUnwindSafe for Filter<T, F>where
T: RefUnwindSafe,
F: RefUnwindSafe,
impl<T, F> Send for Filter<T, F>
impl<T, F> Sync for Filter<T, F>
impl<T, F> Unpin for Filter<T, F>
impl<T, F> UnwindSafe for Filter<T, F>where
T: UnwindSafe,
F: 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