Struct aws_sdk_apptest::types::TestCaseSummary
source · #[non_exhaustive]pub struct TestCaseSummary {
pub test_case_id: String,
pub test_case_arn: String,
pub name: String,
pub status_reason: Option<String>,
pub latest_version: i32,
pub status: TestCaseLifecycle,
pub creation_time: DateTime,
pub last_update_time: DateTime,
}
Expand description
Specifies a test case 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_case_id: String
The test case ID of the test case summary.
test_case_arn: String
The test case Amazon Resource Name (ARN) of the test case summary.
name: String
The name of the test case summary.
status_reason: Option<String>
The status reason of the test case summary.
latest_version: i32
The latest version of the test case summary.
status: TestCaseLifecycle
The status of the test case summary.
creation_time: DateTime
The creation time of the test case summary.
last_update_time: DateTime
The last update time of the test case summary.
Implementations§
source§impl TestCaseSummary
impl TestCaseSummary
sourcepub fn test_case_id(&self) -> &str
pub fn test_case_id(&self) -> &str
The test case ID of the test case summary.
sourcepub fn test_case_arn(&self) -> &str
pub fn test_case_arn(&self) -> &str
The test case Amazon Resource Name (ARN) of the test case summary.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The status reason of the test case summary.
sourcepub fn latest_version(&self) -> i32
pub fn latest_version(&self) -> i32
The latest version of the test case summary.
sourcepub fn status(&self) -> &TestCaseLifecycle
pub fn status(&self) -> &TestCaseLifecycle
The status of the test case summary.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The creation time of the test case summary.
sourcepub fn last_update_time(&self) -> &DateTime
pub fn last_update_time(&self) -> &DateTime
The last update time of the test case summary.
source§impl TestCaseSummary
impl TestCaseSummary
sourcepub fn builder() -> TestCaseSummaryBuilder
pub fn builder() -> TestCaseSummaryBuilder
Creates a new builder-style object to manufacture TestCaseSummary
.
Trait Implementations§
source§impl Clone for TestCaseSummary
impl Clone for TestCaseSummary
source§fn clone(&self) -> TestCaseSummary
fn clone(&self) -> TestCaseSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TestCaseSummary
impl Debug for TestCaseSummary
source§impl PartialEq for TestCaseSummary
impl PartialEq for TestCaseSummary
source§fn eq(&self, other: &TestCaseSummary) -> bool
fn eq(&self, other: &TestCaseSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestCaseSummary
Auto Trait Implementations§
impl Freeze for TestCaseSummary
impl RefUnwindSafe for TestCaseSummary
impl Send for TestCaseSummary
impl Sync for TestCaseSummary
impl Unpin for TestCaseSummary
impl UnwindSafe for TestCaseSummary
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