#[non_exhaustive]pub struct ListTestSetsOutput {
pub test_sets: Option<Vec<TestSetSummary>>,
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_sets: Option<Vec<TestSetSummary>>The selected test sets in a list of test sets.
next_token: Option<String>A token that indicates whether there are more results to return in a response to the ListTestSets operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestSets operation request to get the next page of results.
Implementations§
source§impl ListTestSetsOutput
impl ListTestSetsOutput
sourcepub fn test_sets(&self) -> Option<&[TestSetSummary]>
pub fn test_sets(&self) -> Option<&[TestSetSummary]>
The selected test sets in a list of test sets.
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 ListTestSets operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestSets operation request to get the next page of results.
source§impl ListTestSetsOutput
impl ListTestSetsOutput
sourcepub fn builder() -> ListTestSetsOutputBuilder
pub fn builder() -> ListTestSetsOutputBuilder
Creates a new builder-style object to manufacture ListTestSetsOutput.
Trait Implementations§
source§impl Clone for ListTestSetsOutput
impl Clone for ListTestSetsOutput
source§fn clone(&self) -> ListTestSetsOutput
fn clone(&self) -> ListTestSetsOutput
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 ListTestSetsOutput
impl Debug for ListTestSetsOutput
source§impl PartialEq for ListTestSetsOutput
impl PartialEq for ListTestSetsOutput
source§fn eq(&self, other: &ListTestSetsOutput) -> bool
fn eq(&self, other: &ListTestSetsOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListTestSetsOutput
impl RequestId for ListTestSetsOutput
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 ListTestSetsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListTestSetsOutput
impl Send for ListTestSetsOutput
impl Sync for ListTestSetsOutput
impl Unpin for ListTestSetsOutput
impl UnwindSafe for ListTestSetsOutput
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