pub enum TestKind {
File,
Suite,
Test,
}Expand description
Classification of test items
Variants§
File
A test file (e.g., .t file)
Suite
A test suite containing multiple tests
Test
An individual test function or assertion
Trait Implementations§
impl StructuralPartialEq for TestKind
Auto Trait Implementations§
impl Freeze for TestKind
impl RefUnwindSafe for TestKind
impl Send for TestKind
impl Sync for TestKind
impl Unpin for TestKind
impl UnsafeUnpin for TestKind
impl UnwindSafe for TestKind
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