pub enum AttrFilter {
Idle(Cmp, Duration),
Ahead(Cmp, u32),
Behind(Cmp, u32),
}Expand description
An attribute filter evaluated in memory after the scan.
Variants§
Trait Implementations§
Source§impl Clone for AttrFilter
impl Clone for AttrFilter
Source§fn clone(&self) -> AttrFilter
fn clone(&self) -> AttrFilter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AttrFilter
impl Debug for AttrFilter
Source§impl PartialEq for AttrFilter
impl PartialEq for AttrFilter
Source§fn eq(&self, other: &AttrFilter) -> bool
fn eq(&self, other: &AttrFilter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttrFilter
Auto Trait Implementations§
impl Freeze for AttrFilter
impl RefUnwindSafe for AttrFilter
impl Send for AttrFilter
impl Sync for AttrFilter
impl Unpin for AttrFilter
impl UnsafeUnpin for AttrFilter
impl UnwindSafe for AttrFilter
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