pub struct TestSuite<'a> {
pub fields: ComponentFields<'a>,
pub test_type: Option<&'a str>,
pub main_is: Option<&'a str>,
}Expand description
A test-suite component.
Fields§
§fields: ComponentFields<'a>Shared component fields.
test_type: Option<&'a str>type value (e.g. exitcode-stdio-1.0).
main_is: Option<&'a str>main-is value.
Trait Implementations§
impl<'a> Eq for TestSuite<'a>
impl<'a> StructuralPartialEq for TestSuite<'a>
Auto Trait Implementations§
impl<'a> Freeze for TestSuite<'a>
impl<'a> RefUnwindSafe for TestSuite<'a>
impl<'a> Send for TestSuite<'a>
impl<'a> Sync for TestSuite<'a>
impl<'a> Unpin for TestSuite<'a>
impl<'a> UnsafeUnpin for TestSuite<'a>
impl<'a> UnwindSafe for TestSuite<'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