Struct nextest_filtering::TestQuery
source · [−]pub struct TestQuery<'a> {
pub binary_query: BinaryQuery<'a>,
pub test_name: &'a str,
}
Expand description
A query for a specific test, passed into FilteringExpr::matches_test
.
Fields
binary_query: BinaryQuery<'a>
The binary query.
test_name: &'a str
The name of the test.
Trait Implementations
sourceimpl<'a> PartialEq<TestQuery<'a>> for TestQuery<'a>
impl<'a> PartialEq<TestQuery<'a>> for TestQuery<'a>
impl<'a> Copy for TestQuery<'a>
impl<'a> Eq for TestQuery<'a>
impl<'a> StructuralEq for TestQuery<'a>
impl<'a> StructuralPartialEq for TestQuery<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for TestQuery<'a>
impl<'a> Send for TestQuery<'a>
impl<'a> Sync for TestQuery<'a>
impl<'a> Unpin for TestQuery<'a>
impl<'a> UnwindSafe for TestQuery<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.