#[non_exhaustive]pub struct GetTestRunStepOutput {Show 13 fields
pub step_name: String,
pub test_run_id: String,
pub test_case_id: Option<String>,
pub test_case_version: Option<i32>,
pub test_suite_id: Option<String>,
pub test_suite_version: Option<i32>,
pub before_step: Option<bool>,
pub after_step: Option<bool>,
pub status: StepRunStatus,
pub status_reason: Option<String>,
pub run_start_time: DateTime,
pub run_end_time: Option<DateTime>,
pub step_run_summary: Option<StepRunSummary>,
/* private fields */
}
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.step_name: String
The step name of the test run step.
test_run_id: String
The test run ID of the test run step.
test_case_id: Option<String>
The test case ID of the test run step.
test_case_version: Option<i32>
The test case version of the test run step.
test_suite_id: Option<String>
The test suite ID of the test run step.
test_suite_version: Option<i32>
The test suite version of the test run step.
before_step: Option<bool>
The before steps of the test run step.
after_step: Option<bool>
The after steps of the test run step.
status: StepRunStatus
The status of the test run step.
status_reason: Option<String>
The status reason of the test run step.
run_start_time: DateTime
The run start time of the test run step.
run_end_time: Option<DateTime>
The run end time of the test run step.
step_run_summary: Option<StepRunSummary>
The step run summary of the test run step.
Implementations§
source§impl GetTestRunStepOutput
impl GetTestRunStepOutput
sourcepub fn test_run_id(&self) -> &str
pub fn test_run_id(&self) -> &str
The test run ID of the test run step.
sourcepub fn test_case_id(&self) -> Option<&str>
pub fn test_case_id(&self) -> Option<&str>
The test case ID of the test run step.
sourcepub fn test_case_version(&self) -> Option<i32>
pub fn test_case_version(&self) -> Option<i32>
The test case version of the test run step.
sourcepub fn test_suite_id(&self) -> Option<&str>
pub fn test_suite_id(&self) -> Option<&str>
The test suite ID of the test run step.
sourcepub fn test_suite_version(&self) -> Option<i32>
pub fn test_suite_version(&self) -> Option<i32>
The test suite version of the test run step.
sourcepub fn before_step(&self) -> Option<bool>
pub fn before_step(&self) -> Option<bool>
The before steps of the test run step.
sourcepub fn after_step(&self) -> Option<bool>
pub fn after_step(&self) -> Option<bool>
The after steps of the test run step.
sourcepub fn status(&self) -> &StepRunStatus
pub fn status(&self) -> &StepRunStatus
The status of the test run step.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The status reason of the test run step.
sourcepub fn run_start_time(&self) -> &DateTime
pub fn run_start_time(&self) -> &DateTime
The run start time of the test run step.
sourcepub fn run_end_time(&self) -> Option<&DateTime>
pub fn run_end_time(&self) -> Option<&DateTime>
The run end time of the test run step.
sourcepub fn step_run_summary(&self) -> Option<&StepRunSummary>
pub fn step_run_summary(&self) -> Option<&StepRunSummary>
The step run summary of the test run step.
source§impl GetTestRunStepOutput
impl GetTestRunStepOutput
sourcepub fn builder() -> GetTestRunStepOutputBuilder
pub fn builder() -> GetTestRunStepOutputBuilder
Creates a new builder-style object to manufacture GetTestRunStepOutput
.
Trait Implementations§
source§impl Clone for GetTestRunStepOutput
impl Clone for GetTestRunStepOutput
source§fn clone(&self) -> GetTestRunStepOutput
fn clone(&self) -> GetTestRunStepOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetTestRunStepOutput
impl Debug for GetTestRunStepOutput
source§impl PartialEq for GetTestRunStepOutput
impl PartialEq for GetTestRunStepOutput
source§fn eq(&self, other: &GetTestRunStepOutput) -> bool
fn eq(&self, other: &GetTestRunStepOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetTestRunStepOutput
impl RequestId for GetTestRunStepOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetTestRunStepOutput
Auto Trait Implementations§
impl Freeze for GetTestRunStepOutput
impl RefUnwindSafe for GetTestRunStepOutput
impl Send for GetTestRunStepOutput
impl Sync for GetTestRunStepOutput
impl Unpin for GetTestRunStepOutput
impl UnwindSafe for GetTestRunStepOutput
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