#[non_exhaustive]pub struct ListUniqueProblemsOutput { /* private fields */ }Expand description
Represents the result of a list unique problems request.
Implementations
sourceimpl 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.
sourceimpl ListUniqueProblemsOutput
impl ListUniqueProblemsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListUniqueProblemsOutput.
Trait Implementations
sourceimpl Clone for ListUniqueProblemsOutput
impl Clone for ListUniqueProblemsOutput
sourcefn clone(&self) -> ListUniqueProblemsOutput
fn clone(&self) -> ListUniqueProblemsOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ListUniqueProblemsOutput
impl Debug for ListUniqueProblemsOutput
sourceimpl PartialEq<ListUniqueProblemsOutput> for ListUniqueProblemsOutput
impl PartialEq<ListUniqueProblemsOutput> for ListUniqueProblemsOutput
sourcefn eq(&self, other: &ListUniqueProblemsOutput) -> bool
fn eq(&self, other: &ListUniqueProblemsOutput) -> bool
impl StructuralPartialEq for ListUniqueProblemsOutput
Auto Trait Implementations
impl RefUnwindSafe for ListUniqueProblemsOutput
impl Send for ListUniqueProblemsOutput
impl Sync for ListUniqueProblemsOutput
impl Unpin for ListUniqueProblemsOutput
impl UnwindSafe for ListUniqueProblemsOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more