#[non_exhaustive]pub struct DescribeUsersOutput {
pub users: Option<Vec<User>>,
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.users: Option<Vec<User>>
A list of users.
next_token: Option<String>
An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
Implementations§
source§impl DescribeUsersOutput
impl DescribeUsersOutput
sourcepub fn users(&self) -> &[User]
pub fn users(&self) -> &[User]
A list of users.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .users.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
source§impl DescribeUsersOutput
impl DescribeUsersOutput
sourcepub fn builder() -> DescribeUsersOutputBuilder
pub fn builder() -> DescribeUsersOutputBuilder
Creates a new builder-style object to manufacture DescribeUsersOutput
.
Trait Implementations§
source§impl Clone for DescribeUsersOutput
impl Clone for DescribeUsersOutput
source§fn clone(&self) -> DescribeUsersOutput
fn clone(&self) -> DescribeUsersOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeUsersOutput
impl Debug for DescribeUsersOutput
source§impl PartialEq for DescribeUsersOutput
impl PartialEq for DescribeUsersOutput
source§fn eq(&self, other: &DescribeUsersOutput) -> bool
fn eq(&self, other: &DescribeUsersOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeUsersOutput
impl RequestId for DescribeUsersOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.