pub struct TestNameAndFilterMatch<'a> {
pub name: &'a TestCaseName,
pub filter_match: FilterMatch,
}Fields§
§name: &'a TestCaseName§filter_match: FilterMatchTrait Implementations§
Source§impl<'a> Clone for TestNameAndFilterMatch<'a>
impl<'a> Clone for TestNameAndFilterMatch<'a>
Source§fn clone(&self) -> TestNameAndFilterMatch<'a>
fn clone(&self) -> TestNameAndFilterMatch<'a>
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<'a> Debug for TestNameAndFilterMatch<'a>
impl<'a> Debug for TestNameAndFilterMatch<'a>
Source§impl<'a> IdOrdItem for TestNameAndFilterMatch<'a>
impl<'a> IdOrdItem for TestNameAndFilterMatch<'a>
Source§type Key<'k> = &'a TestCaseName
where
Self: 'k
type Key<'k> = &'a TestCaseName where Self: 'k
The key type. Read more
Source§fn upcast_key<'short, 'long: 'short>(
long: Self::Key<'long>,
) -> Self::Key<'short>where
Self: 'long,
fn upcast_key<'short, 'long: 'short>(
long: Self::Key<'long>,
) -> Self::Key<'short>where
Self: 'long,
Upcasts the key to a shorter lifetime, in effect asserting that the
lifetime
'a on IdOrdItem::Key is covariant. Read moreSource§impl PartialEq<TestNameAndFilterMatch<'_>> for TestCaseFixture
impl PartialEq<TestNameAndFilterMatch<'_>> for TestCaseFixture
Source§fn eq(&self, other: &TestNameAndFilterMatch<'_>) -> bool
fn eq(&self, other: &TestNameAndFilterMatch<'_>) -> bool
Tests for
self and other values to be equal, and is used by ==.Auto Trait Implementations§
impl<'a> Freeze for TestNameAndFilterMatch<'a>
impl<'a> RefUnwindSafe for TestNameAndFilterMatch<'a>
impl<'a> Send for TestNameAndFilterMatch<'a>
impl<'a> Sync for TestNameAndFilterMatch<'a>
impl<'a> Unpin for TestNameAndFilterMatch<'a>
impl<'a> UnsafeUnpin for TestNameAndFilterMatch<'a>
impl<'a> UnwindSafe for TestNameAndFilterMatch<'a>
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