pub enum FilterOutput<T, F> {
Include(T, F),
Exclude,
Continue,
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<T, F> Freeze for FilterOutput<T, F>
impl<T, F> RefUnwindSafe for FilterOutput<T, F>where
T: RefUnwindSafe,
F: RefUnwindSafe,
impl<T, F> Send for FilterOutput<T, F>
impl<T, F> Sync for FilterOutput<T, F>
impl<T, F> Unpin for FilterOutput<T, F>
impl<T, F> UnsafeUnpin for FilterOutput<T, F>where
T: UnsafeUnpin,
F: UnsafeUnpin,
impl<T, F> UnwindSafe for FilterOutput<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