pub struct DescribeTestCasesOutput {
pub next_token: Option<String>,
pub test_cases: Option<Vec<TestCase>>,
}
Fields§
§next_token: Option<String>
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
test_cases: Option<Vec<TestCase>>
The returned list of test cases.
Trait Implementations§
Source§impl Clone for DescribeTestCasesOutput
impl Clone for DescribeTestCasesOutput
Source§fn clone(&self) -> DescribeTestCasesOutput
fn clone(&self) -> DescribeTestCasesOutput
Returns a duplicate 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 DescribeTestCasesOutput
impl Debug for DescribeTestCasesOutput
Source§impl Default for DescribeTestCasesOutput
impl Default for DescribeTestCasesOutput
Source§fn default() -> DescribeTestCasesOutput
fn default() -> DescribeTestCasesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeTestCasesOutput
impl<'de> Deserialize<'de> for DescribeTestCasesOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeTestCasesOutput
impl PartialEq for DescribeTestCasesOutput
impl StructuralPartialEq for DescribeTestCasesOutput
Auto Trait Implementations§
impl Freeze for DescribeTestCasesOutput
impl RefUnwindSafe for DescribeTestCasesOutput
impl Send for DescribeTestCasesOutput
impl Sync for DescribeTestCasesOutput
impl Unpin for DescribeTestCasesOutput
impl UnwindSafe for DescribeTestCasesOutput
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