pub struct TestOutput {
pub testsuites: Vec<TestSuiteOutput>,
}
Expand description
Provides info test and the its run result.
Example: For test FOO.Bar, this contains info about FOO.
Please refer to documentation of TestSuiteOutput
for details.
Fields§
§testsuites: Vec<TestSuiteOutput>
Trait Implementations§
Source§impl Debug for TestOutput
impl Debug for TestOutput
Source§impl Default for TestOutput
impl Default for TestOutput
Source§fn default() -> TestOutput
fn default() -> TestOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestOutput
impl<'de> Deserialize<'de> for TestOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TestOutput
impl PartialEq for TestOutput
Source§impl Serialize for TestOutput
impl Serialize for TestOutput
impl StructuralPartialEq for TestOutput
Auto Trait Implementations§
impl Freeze for TestOutput
impl RefUnwindSafe for TestOutput
impl Send for TestOutput
impl Sync for TestOutput
impl Unpin for TestOutput
impl UnwindSafe for TestOutput
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