#[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 for ListUniqueProblemsOutput
impl PartialEq 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.impl StructuralPartialEq for ListUniqueProblemsOutput
Auto Trait Implementations§
impl Freeze for ListUniqueProblemsOutput
impl RefUnwindSafe for ListUniqueProblemsOutput
impl Send for ListUniqueProblemsOutput
impl Sync for ListUniqueProblemsOutput
impl Unpin for ListUniqueProblemsOutput
impl UnwindSafe for ListUniqueProblemsOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more