#[non_exhaustive]pub struct ListUniqueProblemsOutput {
pub unique_problems: Option<HashMap<ExecutionResult, Vec<UniqueProblem>>>,
pub next_token: Option<String>,
/* private fields */
}
Expand description
Represents the result of a list unique problems request.
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.unique_problems: Option<HashMap<ExecutionResult, Vec<UniqueProblem>>>
Information about the unique problems.
Allowed values include:
-
PENDING
-
PASSED
-
WARNED
-
FAILED
-
SKIPPED
-
ERRORED
-
STOPPED
next_token: Option<String>
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
Implementations§
source§impl ListUniqueProblemsOutput
impl ListUniqueProblemsOutput
sourcepub fn unique_problems(
&self
) -> Option<&HashMap<ExecutionResult, Vec<UniqueProblem>>>
pub fn unique_problems( &self ) -> Option<&HashMap<ExecutionResult, Vec<UniqueProblem>>>
Information about the unique problems.
Allowed values include:
-
PENDING
-
PASSED
-
WARNED
-
FAILED
-
SKIPPED
-
ERRORED
-
STOPPED
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the number of items that are returned is significantly large, this is an identifier that is also returned. It can be used in a subsequent call to this operation to return the next set of items in the list.
source§impl ListUniqueProblemsOutput
impl ListUniqueProblemsOutput
sourcepub fn builder() -> ListUniqueProblemsOutputBuilder
pub fn builder() -> ListUniqueProblemsOutputBuilder
Creates a new builder-style object to manufacture ListUniqueProblemsOutput
.
Trait Implementations§
source§impl Clone for ListUniqueProblemsOutput
impl Clone for ListUniqueProblemsOutput
source§fn clone(&self) -> ListUniqueProblemsOutput
fn clone(&self) -> ListUniqueProblemsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListUniqueProblemsOutput
impl Debug for ListUniqueProblemsOutput
source§impl PartialEq<ListUniqueProblemsOutput> for ListUniqueProblemsOutput
impl PartialEq<ListUniqueProblemsOutput> for ListUniqueProblemsOutput
source§fn eq(&self, other: &ListUniqueProblemsOutput) -> bool
fn eq(&self, other: &ListUniqueProblemsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListUniqueProblemsOutput
impl RequestId for ListUniqueProblemsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.