pub struct GetAllUsersParams {
pub start_at: Option<i32>,
pub max_results: Option<i32>,
}Expand description
struct for passing parameters to the method get_all_users
Fields§
§start_at: Option<i32>The index of the first item to return.
max_results: Option<i32>The maximum number of items to return.
Trait Implementations§
Source§impl Clone for GetAllUsersParams
impl Clone for GetAllUsersParams
Source§fn clone(&self) -> GetAllUsersParams
fn clone(&self) -> GetAllUsersParams
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 moreAuto Trait Implementations§
impl Freeze for GetAllUsersParams
impl RefUnwindSafe for GetAllUsersParams
impl Send for GetAllUsersParams
impl Sync for GetAllUsersParams
impl Unpin for GetAllUsersParams
impl UnwindSafe for GetAllUsersParams
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