pub struct IamV1RolesListParams {
pub limit: Option<i32>,
pub cursor: Option<String>,
}Expand description
struct for passing parameters to the method iam_v1_roles_list
Fields§
§limit: Option<i32>Number of results per page. The maximum is 1000.
cursor: Option<String>Cursor value from the next_cursor field of a previous response, used to retrieve the next page. To request the first page, this should be empty.
Trait Implementations§
Source§impl Clone for IamV1RolesListParams
impl Clone for IamV1RolesListParams
Source§fn clone(&self) -> IamV1RolesListParams
fn clone(&self) -> IamV1RolesListParams
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 IamV1RolesListParams
impl Debug for IamV1RolesListParams
Source§impl Default for IamV1RolesListParams
impl Default for IamV1RolesListParams
Source§fn default() -> IamV1RolesListParams
fn default() -> IamV1RolesListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IamV1RolesListParams
impl RefUnwindSafe for IamV1RolesListParams
impl Send for IamV1RolesListParams
impl Sync for IamV1RolesListParams
impl Unpin for IamV1RolesListParams
impl UnwindSafe for IamV1RolesListParams
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