pub struct ConformanceTest {
pub id: &'static str,
pub category: &'static str,
pub run: TestRunner,
}Expand description
A single conformance test registration.
Fields§
§id: &'static strStable identifier (kebab-case). Becomes part of the JSON report.
category: &'static strDisplay category.
run: TestRunnerRunner function — async, returns Ok(()) on pass.
Auto Trait Implementations§
impl Freeze for ConformanceTest
impl RefUnwindSafe for ConformanceTest
impl Send for ConformanceTest
impl Sync for ConformanceTest
impl Unpin for ConformanceTest
impl UnsafeUnpin for ConformanceTest
impl UnwindSafe for ConformanceTest
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