#[non_exhaustive]pub struct ListUserProfilesOutput {
pub user_profiles: Option<Vec<UserProfileDetails>>,
pub next_token: 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.user_profiles: Option<Vec<UserProfileDetails>>
The list of user profiles.
next_token: Option<String>
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
Implementations§
source§impl ListUserProfilesOutput
impl ListUserProfilesOutput
sourcepub fn user_profiles(&self) -> Option<&[UserProfileDetails]>
pub fn user_profiles(&self) -> Option<&[UserProfileDetails]>
The list of user profiles.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
source§impl ListUserProfilesOutput
impl ListUserProfilesOutput
sourcepub fn builder() -> ListUserProfilesOutputBuilder
pub fn builder() -> ListUserProfilesOutputBuilder
Creates a new builder-style object to manufacture ListUserProfilesOutput
.
Trait Implementations§
source§impl Clone for ListUserProfilesOutput
impl Clone for ListUserProfilesOutput
source§fn clone(&self) -> ListUserProfilesOutput
fn clone(&self) -> ListUserProfilesOutput
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 ListUserProfilesOutput
impl Debug for ListUserProfilesOutput
source§impl PartialEq<ListUserProfilesOutput> for ListUserProfilesOutput
impl PartialEq<ListUserProfilesOutput> for ListUserProfilesOutput
source§fn eq(&self, other: &ListUserProfilesOutput) -> bool
fn eq(&self, other: &ListUserProfilesOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListUserProfilesOutput
impl RequestId for ListUserProfilesOutput
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 ListUserProfilesOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListUserProfilesOutput
impl Send for ListUserProfilesOutput
impl Sync for ListUserProfilesOutput
impl Unpin for ListUserProfilesOutput
impl UnwindSafe for ListUserProfilesOutput
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