pub struct TestSuiteRun {
pub status: StatusTrue,
pub id: String,
pub org_id: String,
pub test_suite_id: String,
pub created_at: String,
pub updated_at: String,
pub test_results: Vec<TestSuiteRunTestResult>,
pub name: Option<String>,
}
Fields§
§status: StatusTrue
This is the current status of the test suite run.
id: String
This is the unique identifier for the test suite run.
org_id: String
This is the unique identifier for the organization this run belongs to.
test_suite_id: String
This is the unique identifier for the test suite this run belongs to.
created_at: String
This is the ISO 8601 date-time string of when the test suite run was created.
updated_at: String
This is the ISO 8601 date-time string of when the test suite run was last updated.
test_results: Vec<TestSuiteRunTestResult>
These are the results of the tests in this test suite run.
name: Option<String>
This is the name of the test suite run.
Implementations§
Source§impl TestSuiteRun
impl TestSuiteRun
pub fn new( status: StatusTrue, id: String, org_id: String, test_suite_id: String, created_at: String, updated_at: String, test_results: Vec<TestSuiteRunTestResult>, ) -> TestSuiteRun
Trait Implementations§
Source§impl Clone for TestSuiteRun
impl Clone for TestSuiteRun
Source§fn clone(&self) -> TestSuiteRun
fn clone(&self) -> TestSuiteRun
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TestSuiteRun
impl Debug for TestSuiteRun
Source§impl Default for TestSuiteRun
impl Default for TestSuiteRun
Source§fn default() -> TestSuiteRun
fn default() -> TestSuiteRun
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestSuiteRun
impl<'de> Deserialize<'de> for TestSuiteRun
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 TestSuiteRun
impl PartialEq for TestSuiteRun
Source§impl Serialize for TestSuiteRun
impl Serialize for TestSuiteRun
impl StructuralPartialEq for TestSuiteRun
Auto Trait Implementations§
impl Freeze for TestSuiteRun
impl RefUnwindSafe for TestSuiteRun
impl Send for TestSuiteRun
impl Sync for TestSuiteRun
impl Unpin for TestSuiteRun
impl UnwindSafe for TestSuiteRun
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