pub struct TestInfo {
pub skip: bool,
pub failure_application_reasons: FailureApplicationReasons,
pub failures: Vec<FailureCase>,
pub running_msg: String,
}
Expand description
Information about a test, including if if it should be skipped.
Fields§
§skip: bool
§failure_application_reasons: FailureApplicationReasons
§failures: Vec<FailureCase>
§running_msg: String
Implementations§
Source§impl TestInfo
impl TestInfo
pub(crate) fn from_configuration( test: &GpuTestConfiguration, adapter: &AdapterReport, ) -> Self
Auto Trait Implementations§
impl Freeze for TestInfo
impl RefUnwindSafe for TestInfo
impl Send for TestInfo
impl Sync for TestInfo
impl Unpin for TestInfo
impl UnwindSafe for TestInfo
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