pub struct ListUsersRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub server_id: String,
}Fields§
§max_results: Option<i64>Specifies the number of users to return as a response to the ListUsers request.
next_token: Option<String>When you can get additional results from the ListUsers call, a NextToken parameter is returned in the output. You can then pass in a subsequent command to the NextToken parameter to continue listing additional users.
server_id: StringA system-assigned unique identifier for a file transfer protocol-enabled server that has users assigned to it.
Trait Implementations§
Source§impl Clone for ListUsersRequest
impl Clone for ListUsersRequest
Source§fn clone(&self) -> ListUsersRequest
fn clone(&self) -> ListUsersRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListUsersRequest
impl Debug for ListUsersRequest
Source§impl Default for ListUsersRequest
impl Default for ListUsersRequest
Source§fn default() -> ListUsersRequest
fn default() -> ListUsersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListUsersRequest
impl PartialEq for ListUsersRequest
Source§fn eq(&self, other: &ListUsersRequest) -> bool
fn eq(&self, other: &ListUsersRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ListUsersRequest
impl Serialize for ListUsersRequest
impl StructuralPartialEq for ListUsersRequest
Auto Trait Implementations§
impl Freeze for ListUsersRequest
impl RefUnwindSafe for ListUsersRequest
impl Send for ListUsersRequest
impl Sync for ListUsersRequest
impl Unpin for ListUsersRequest
impl UnsafeUnpin for ListUsersRequest
impl UnwindSafe for ListUsersRequest
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