pub struct ConformanceCase {
pub name: &'static str,
pub asserts: &'static str,
/* private fields */
}Expand description
One case: a name and something to run.
Fields§
§name: &'static str§asserts: &'static strWhat it checks, in one line — printed by a runner so a failure reads as a property, not a number.
Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for ConformanceCase
impl !Sync for ConformanceCase
impl !UnwindSafe for ConformanceCase
impl Freeze for ConformanceCase
impl Send for ConformanceCase
impl Unpin for ConformanceCase
impl UnsafeUnpin for ConformanceCase
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