#[non_exhaustive]pub struct ListProblemsOutput {
pub problem_list: Option<Vec<Problem>>,
pub next_token: Option<String>,
pub resource_group_name: 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.problem_list: Option<Vec<Problem>>
The list of problems.
next_token: Option<String>
The token used to retrieve the next page of results. This value is null
when there are no more results to return.
resource_group_name: Option<String>
The name of the resource group.
Implementations§
source§impl ListProblemsOutput
impl ListProblemsOutput
sourcepub fn problem_list(&self) -> Option<&[Problem]>
pub fn problem_list(&self) -> Option<&[Problem]>
The list of problems.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token used to retrieve the next page of results. This value is null
when there are no more results to return.
sourcepub fn resource_group_name(&self) -> Option<&str>
pub fn resource_group_name(&self) -> Option<&str>
The name of the resource group.
source§impl ListProblemsOutput
impl ListProblemsOutput
sourcepub fn builder() -> ListProblemsOutputBuilder
pub fn builder() -> ListProblemsOutputBuilder
Creates a new builder-style object to manufacture ListProblemsOutput
.
Trait Implementations§
source§impl Clone for ListProblemsOutput
impl Clone for ListProblemsOutput
source§fn clone(&self) -> ListProblemsOutput
fn clone(&self) -> ListProblemsOutput
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 ListProblemsOutput
impl Debug for ListProblemsOutput
source§impl PartialEq<ListProblemsOutput> for ListProblemsOutput
impl PartialEq<ListProblemsOutput> for ListProblemsOutput
source§fn eq(&self, other: &ListProblemsOutput) -> bool
fn eq(&self, other: &ListProblemsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListProblemsOutput
impl RequestId for ListProblemsOutput
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 ListProblemsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListProblemsOutput
impl Send for ListProblemsOutput
impl Sync for ListProblemsOutput
impl Unpin for ListProblemsOutput
impl UnwindSafe for ListProblemsOutput
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