pub struct ListUserProfilesRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of results to return in a response.
next_token: Option<String>
The continuation token for the next set of results, if the results cannot be returned in one response.
Trait Implementations§
Source§impl Clone for ListUserProfilesRequest
impl Clone for ListUserProfilesRequest
Source§fn clone(&self) -> ListUserProfilesRequest
fn clone(&self) -> ListUserProfilesRequest
Returns a duplicate 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 ListUserProfilesRequest
impl Debug for ListUserProfilesRequest
Source§impl Default for ListUserProfilesRequest
impl Default for ListUserProfilesRequest
Source§fn default() -> ListUserProfilesRequest
fn default() -> ListUserProfilesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListUserProfilesRequest
impl PartialEq for ListUserProfilesRequest
Source§impl Serialize for ListUserProfilesRequest
impl Serialize for ListUserProfilesRequest
impl StructuralPartialEq for ListUserProfilesRequest
Auto Trait Implementations§
impl Freeze for ListUserProfilesRequest
impl RefUnwindSafe for ListUserProfilesRequest
impl Send for ListUserProfilesRequest
impl Sync for ListUserProfilesRequest
impl Unpin for ListUserProfilesRequest
impl UnwindSafe for ListUserProfilesRequest
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