Struct aws_sdk_iotdeviceadvisor::model::SuiteRunInformation [−][src]
#[non_exhaustive]pub struct SuiteRunInformation {
pub suite_definition_id: Option<String>,
pub suite_definition_version: Option<String>,
pub suite_definition_name: Option<String>,
pub suite_run_id: Option<String>,
pub created_at: Option<DateTime>,
pub started_at: Option<DateTime>,
pub end_at: Option<DateTime>,
pub status: Option<SuiteRunStatus>,
pub passed: i32,
pub failed: i32,
}
Expand description
Information about the suite run.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.suite_definition_id: Option<String>
Suite definition Id of the suite run.
suite_definition_version: Option<String>
Suite definition version of the suite run.
suite_definition_name: Option<String>
Suite definition name of the suite run.
suite_run_id: Option<String>
Suite run Id of the suite run.
created_at: Option<DateTime>
Date (in Unix epoch time) when the suite run was created.
started_at: Option<DateTime>
Date (in Unix epoch time) when the suite run was started.
end_at: Option<DateTime>
Date (in Unix epoch time) when the suite run ended.
status: Option<SuiteRunStatus>
Status of the suite run.
passed: i32
Number of test cases that passed in the suite run.
failed: i32
Number of test cases that failed in the suite run.
Implementations
Suite definition Id of the suite run.
Suite definition version of the suite run.
Suite definition name of the suite run.
Suite run Id of the suite run.
Date (in Unix epoch time) when the suite run was created.
Date (in Unix epoch time) when the suite run was started.
Status of the suite run.
Creates a new builder-style object to manufacture SuiteRunInformation
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for SuiteRunInformation
impl Send for SuiteRunInformation
impl Sync for SuiteRunInformation
impl Unpin for SuiteRunInformation
impl UnwindSafe for SuiteRunInformation
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more