pub struct ListRolesParams {
pub per_page: Option<i32>,
pub page: Option<i32>,
}
Expand description
struct for passing parameters to the method list_roles
Fields§
§per_page: Option<i32>
Number of records per page.
page: Option<i32>
Current page.
Trait Implementations§
Source§impl Clone for ListRolesParams
impl Clone for ListRolesParams
Source§fn clone(&self) -> ListRolesParams
fn clone(&self) -> ListRolesParams
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 ListRolesParams
impl Debug for ListRolesParams
Source§impl Default for ListRolesParams
impl Default for ListRolesParams
Source§fn default() -> ListRolesParams
fn default() -> ListRolesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListRolesParams
impl RefUnwindSafe for ListRolesParams
impl Send for ListRolesParams
impl Sync for ListRolesParams
impl Unpin for ListRolesParams
impl UnwindSafe for ListRolesParams
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