Struct aws_sdk_apptest::types::TestSuiteSummary
source · #[non_exhaustive]pub struct TestSuiteSummary {
pub test_suite_id: String,
pub name: String,
pub status_reason: Option<String>,
pub latest_version: i32,
pub test_suite_arn: String,
pub status: TestSuiteLifecycle,
pub creation_time: DateTime,
pub last_update_time: DateTime,
}
Expand description
Specifies the test suite summary.
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.test_suite_id: String
The test suite ID of the test suite summary.
name: String
The name of the test suite summary.
status_reason: Option<String>
The status reason of the test suite summary.
latest_version: i32
The latest version of the test suite summary.
test_suite_arn: String
The test suite Amazon Resource Name (ARN) of the test suite summary.
status: TestSuiteLifecycle
The status of the test suite summary.
creation_time: DateTime
The creation time of the test suite summary.
last_update_time: DateTime
The last update time of the test suite summary.
Implementations§
source§impl TestSuiteSummary
impl TestSuiteSummary
sourcepub fn test_suite_id(&self) -> &str
pub fn test_suite_id(&self) -> &str
The test suite ID of the test suite summary.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The status reason of the test suite summary.
sourcepub fn latest_version(&self) -> i32
pub fn latest_version(&self) -> i32
The latest version of the test suite summary.
sourcepub fn test_suite_arn(&self) -> &str
pub fn test_suite_arn(&self) -> &str
The test suite Amazon Resource Name (ARN) of the test suite summary.
sourcepub fn status(&self) -> &TestSuiteLifecycle
pub fn status(&self) -> &TestSuiteLifecycle
The status of the test suite summary.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The creation time of the test suite summary.
sourcepub fn last_update_time(&self) -> &DateTime
pub fn last_update_time(&self) -> &DateTime
The last update time of the test suite summary.
source§impl TestSuiteSummary
impl TestSuiteSummary
sourcepub fn builder() -> TestSuiteSummaryBuilder
pub fn builder() -> TestSuiteSummaryBuilder
Creates a new builder-style object to manufacture TestSuiteSummary
.
Trait Implementations§
source§impl Clone for TestSuiteSummary
impl Clone for TestSuiteSummary
source§fn clone(&self) -> TestSuiteSummary
fn clone(&self) -> TestSuiteSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TestSuiteSummary
impl Debug for TestSuiteSummary
source§impl PartialEq for TestSuiteSummary
impl PartialEq for TestSuiteSummary
source§fn eq(&self, other: &TestSuiteSummary) -> bool
fn eq(&self, other: &TestSuiteSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestSuiteSummary
Auto Trait Implementations§
impl Freeze for TestSuiteSummary
impl RefUnwindSafe for TestSuiteSummary
impl Send for TestSuiteSummary
impl Sync for TestSuiteSummary
impl Unpin for TestSuiteSummary
impl UnwindSafe for TestSuiteSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more