pub enum Filter<I: IntoIterator<Item = EventKind>> {
Accept(I),
AcceptAll,
AcceptAllExcept(I),
}Variants§
Auto Trait Implementations§
impl<I> Freeze for Filter<I>where
I: Freeze,
impl<I> RefUnwindSafe for Filter<I>where
I: RefUnwindSafe,
impl<I> Send for Filter<I>where
I: Send,
impl<I> Sync for Filter<I>where
I: Sync,
impl<I> Unpin for Filter<I>where
I: Unpin,
impl<I> UnsafeUnpin for Filter<I>where
I: UnsafeUnpin,
impl<I> UnwindSafe for Filter<I>where
I: 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