#[non_exhaustive]pub struct ListTestExecutionsInput {
pub sort_by: Option<TestExecutionSortBy>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.sort_by: Option<TestExecutionSortBy>
The sort order of the test set executions.
max_results: Option<i32>
The maximum number of test executions to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.
next_token: Option<String>
If the response from the ListTestExecutions operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
Implementations§
source§impl ListTestExecutionsInput
impl ListTestExecutionsInput
sourcepub fn sort_by(&self) -> Option<&TestExecutionSortBy>
pub fn sort_by(&self) -> Option<&TestExecutionSortBy>
The sort order of the test set executions.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of test executions to return in each page. If there are fewer results than the max page size, only the actual number of results are returned.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response from the ListTestExecutions operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
source§impl ListTestExecutionsInput
impl ListTestExecutionsInput
sourcepub fn builder() -> ListTestExecutionsInputBuilder
pub fn builder() -> ListTestExecutionsInputBuilder
Creates a new builder-style object to manufacture ListTestExecutionsInput
.
Trait Implementations§
source§impl Clone for ListTestExecutionsInput
impl Clone for ListTestExecutionsInput
source§fn clone(&self) -> ListTestExecutionsInput
fn clone(&self) -> ListTestExecutionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListTestExecutionsInput
impl Debug for ListTestExecutionsInput
source§impl PartialEq for ListTestExecutionsInput
impl PartialEq for ListTestExecutionsInput
source§fn eq(&self, other: &ListTestExecutionsInput) -> bool
fn eq(&self, other: &ListTestExecutionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.