#[non_exhaustive]pub struct SuiteDefinitionInformation { /* private fields */ }
Expand description
Information about the suite definition.
Implementations§
source§impl SuiteDefinitionInformation
impl SuiteDefinitionInformation
sourcepub fn suite_definition_id(&self) -> Option<&str>
pub fn suite_definition_id(&self) -> Option<&str>
Suite definition ID of the test suite.
sourcepub fn suite_definition_name(&self) -> Option<&str>
pub fn suite_definition_name(&self) -> Option<&str>
Suite name of the test suite.
sourcepub fn default_devices(&self) -> Option<&[DeviceUnderTest]>
pub fn default_devices(&self) -> Option<&[DeviceUnderTest]>
Specifies the devices that are under test for the test suite.
sourcepub fn intended_for_qualification(&self) -> bool
pub fn intended_for_qualification(&self) -> bool
Specifies if the test suite is intended for qualification.
sourcepub fn is_long_duration_test(&self) -> bool
pub fn is_long_duration_test(&self) -> bool
Verifies if the test suite is a long duration test.
sourcepub fn protocol(&self) -> Option<&Protocol>
pub fn protocol(&self) -> Option<&Protocol>
Gets the MQTT protocol that is configured in the suite definition.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
Date (in Unix epoch time) when the test suite was created.
source§impl SuiteDefinitionInformation
impl SuiteDefinitionInformation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SuiteDefinitionInformation
.
Trait Implementations§
source§impl Clone for SuiteDefinitionInformation
impl Clone for SuiteDefinitionInformation
source§fn clone(&self) -> SuiteDefinitionInformation
fn clone(&self) -> SuiteDefinitionInformation
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 SuiteDefinitionInformation
impl Debug for SuiteDefinitionInformation
source§impl PartialEq<SuiteDefinitionInformation> for SuiteDefinitionInformation
impl PartialEq<SuiteDefinitionInformation> for SuiteDefinitionInformation
source§fn eq(&self, other: &SuiteDefinitionInformation) -> bool
fn eq(&self, other: &SuiteDefinitionInformation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.