pub enum GenFilter {
Exact(u64),
AtLeast(u64),
AtMost(u64),
}Expand description
A generation filter: exact match, >= (plus), or <= (minus).
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GenFilter
impl RefUnwindSafe for GenFilter
impl Send for GenFilter
impl Sync for GenFilter
impl Unpin for GenFilter
impl UnsafeUnpin for GenFilter
impl UnwindSafe for GenFilter
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