#[non_exhaustive]pub struct ListTestExecutionsOutput {
pub test_executions: Option<Vec<TestExecutionSummary>>,
pub next_token: Option<String>,
/* 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.test_executions: Option<Vec<TestExecutionSummary>>
The list of test executions.
next_token: Option<String>
A token that indicates whether there are more results to return in a response to the ListTestExecutions operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestExecutions operation request to get the next page of results.
Implementations§
source§impl ListTestExecutionsOutput
impl ListTestExecutionsOutput
sourcepub fn test_executions(&self) -> &[TestExecutionSummary]
pub fn test_executions(&self) -> &[TestExecutionSummary]
The list of test executions.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .test_executions.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token that indicates whether there are more results to return in a response to the ListTestExecutions operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestExecutions operation request to get the next page of results.
source§impl ListTestExecutionsOutput
impl ListTestExecutionsOutput
sourcepub fn builder() -> ListTestExecutionsOutputBuilder
pub fn builder() -> ListTestExecutionsOutputBuilder
Creates a new builder-style object to manufacture ListTestExecutionsOutput
.
Trait Implementations§
source§impl Clone for ListTestExecutionsOutput
impl Clone for ListTestExecutionsOutput
source§fn clone(&self) -> ListTestExecutionsOutput
fn clone(&self) -> ListTestExecutionsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTestExecutionsOutput
impl Debug for ListTestExecutionsOutput
source§impl PartialEq for ListTestExecutionsOutput
impl PartialEq for ListTestExecutionsOutput
source§fn eq(&self, other: &ListTestExecutionsOutput) -> bool
fn eq(&self, other: &ListTestExecutionsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListTestExecutionsOutput
impl RequestId for ListTestExecutionsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.