pub struct Filtering<'p, T: 'p, P: Fn(&T) -> bool + 'p> { /* private fields */ }
Expand description
The filtering transducer that passes through elements that satisfy a predicate.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'p, T, P> Freeze for Filtering<'p, T, P>
impl<'p, T, P> RefUnwindSafe for Filtering<'p, T, P>where
P: RefUnwindSafe,
impl<'p, T, P> Send for Filtering<'p, T, P>where
P: Sync,
impl<'p, T, P> Sync for Filtering<'p, T, P>where
P: Sync,
impl<'p, T, P> Unpin for Filtering<'p, T, P>
impl<'p, T, P> UnwindSafe for Filtering<'p, T, P>where
P: RefUnwindSafe,
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