pub enum Test {
Exact,
Match,
Glob,
Re,
}Expand description
One test ARGREP applies to an element.
Variants§
Exact
EXACT, the whole element and nothing else.
Match
MATCH, the pattern anywhere inside the element.
Glob
GLOB, the pattern read as a glob.
Re
RE, the pattern read as an extended regular expression.
Trait Implementations§
impl Copy for Test
impl Eq for Test
impl StructuralPartialEq for Test
Auto Trait Implementations§
impl Freeze for Test
impl RefUnwindSafe for Test
impl Send for Test
impl Sync for Test
impl Unpin for Test
impl UnsafeUnpin for Test
impl UnwindSafe for Test
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