#[non_exhaustive]pub struct SuiteRunInformation { /* private fields */ }
Expand description
Information about the suite run.
Requires permission to access the SuiteRunInformation action.
Implementations§
source§impl SuiteRunInformation
impl SuiteRunInformation
sourcepub fn suite_definition_id(&self) -> Option<&str>
pub fn suite_definition_id(&self) -> Option<&str>
Suite definition ID of the suite run.
sourcepub fn suite_definition_version(&self) -> Option<&str>
pub fn suite_definition_version(&self) -> Option<&str>
Suite definition version of the suite run.
sourcepub fn suite_definition_name(&self) -> Option<&str>
pub fn suite_definition_name(&self) -> Option<&str>
Suite definition name of the suite run.
sourcepub fn suite_run_id(&self) -> Option<&str>
pub fn suite_run_id(&self) -> Option<&str>
Suite run ID of the suite run.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
Date (in Unix epoch time) when the suite run was created.
sourcepub fn started_at(&self) -> Option<&DateTime>
pub fn started_at(&self) -> Option<&DateTime>
Date (in Unix epoch time) when the suite run was started.
sourcepub fn status(&self) -> Option<&SuiteRunStatus>
pub fn status(&self) -> Option<&SuiteRunStatus>
Status of the suite run.
source§impl SuiteRunInformation
impl SuiteRunInformation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SuiteRunInformation
.
Trait Implementations§
source§impl Clone for SuiteRunInformation
impl Clone for SuiteRunInformation
source§fn clone(&self) -> SuiteRunInformation
fn clone(&self) -> SuiteRunInformation
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SuiteRunInformation
impl Debug for SuiteRunInformation
source§impl PartialEq<SuiteRunInformation> for SuiteRunInformation
impl PartialEq<SuiteRunInformation> for SuiteRunInformation
source§fn eq(&self, other: &SuiteRunInformation) -> bool
fn eq(&self, other: &SuiteRunInformation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.