#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[TestExecutionSummary]>
pub fn test_executions(&self) -> Option<&[TestExecutionSummary]>
The list of test executions.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
This method tests for
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>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for ListTestExecutionsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListTestExecutionsOutput
impl Send for ListTestExecutionsOutput
impl Sync for ListTestExecutionsOutput
impl Unpin for ListTestExecutionsOutput
impl UnwindSafe for ListTestExecutionsOutput
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
Mutably borrows from an owned value. Read more