#[non_exhaustive]pub struct ListProjectsOutput {
pub items: Option<Vec<ProjectSummary>>,
pub next_token: Option<String>,
/* private fields */
}
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.items: Option<Vec<ProjectSummary>>
The results of the ListProjects
action.
next_token: Option<String>
When the number of projects is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of projects, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListProjects
to list the next set of projects.
Implementations§
source§impl ListProjectsOutput
impl ListProjectsOutput
sourcepub fn items(&self) -> Option<&[ProjectSummary]>
pub fn items(&self) -> Option<&[ProjectSummary]>
The results of the ListProjects
action.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When the number of projects is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of projects, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListProjects
to list the next set of projects.
source§impl ListProjectsOutput
impl ListProjectsOutput
sourcepub fn builder() -> ListProjectsOutputBuilder
pub fn builder() -> ListProjectsOutputBuilder
Creates a new builder-style object to manufacture ListProjectsOutput
.
Trait Implementations§
source§impl Clone for ListProjectsOutput
impl Clone for ListProjectsOutput
source§fn clone(&self) -> ListProjectsOutput
fn clone(&self) -> ListProjectsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListProjectsOutput
impl Debug for ListProjectsOutput
source§impl PartialEq for ListProjectsOutput
impl PartialEq for ListProjectsOutput
source§fn eq(&self, other: &ListProjectsOutput) -> bool
fn eq(&self, other: &ListProjectsOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListProjectsOutput
impl RequestId for ListProjectsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.