pub struct TestRun {
    pub name: String,
    pub date: OffsetDateTime,
    pub nr_of_tests: u32,
    pub data: Option<Value>,
    pub logs: Option<String>,
    pub tests: Vec<Test>,
}Fields§
§name: String§date: OffsetDateTimeTest run date must be given in ISO8601 format.
nr_of_tests: u32§data: Option<Value>Field to store custom information per test run.
logs: Option<String>§tests: Vec<Test>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TestRun
 
impl<'de> Deserialize<'de> for TestRun
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 JsonSchema for TestRun
 
impl JsonSchema for TestRun
Source§fn schema_name() -> String
 
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
 
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
 
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
 
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the 
$ref keyword. Read moreimpl Eq for TestRun
impl StructuralPartialEq for TestRun
Auto Trait Implementations§
impl Freeze for TestRun
impl RefUnwindSafe for TestRun
impl Send for TestRun
impl Sync for TestRun
impl Unpin for TestRun
impl UnwindSafe for TestRun
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