pub struct ListGroupsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub organization_id: String,
}Fields§
§max_results: Option<i64>The maximum number of results to return in a single call.
next_token: Option<String>The token to use to retrieve the next page of results. The first call does not contain any tokens.
organization_id: StringThe identifier for the organization under which the groups exist.
Trait Implementations§
Source§impl Clone for ListGroupsRequest
impl Clone for ListGroupsRequest
Source§fn clone(&self) -> ListGroupsRequest
fn clone(&self) -> ListGroupsRequest
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 ListGroupsRequest
impl Debug for ListGroupsRequest
Source§impl Default for ListGroupsRequest
impl Default for ListGroupsRequest
Source§fn default() -> ListGroupsRequest
fn default() -> ListGroupsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListGroupsRequest
impl PartialEq for ListGroupsRequest
Source§impl Serialize for ListGroupsRequest
impl Serialize for ListGroupsRequest
impl StructuralPartialEq for ListGroupsRequest
Auto Trait Implementations§
impl Freeze for ListGroupsRequest
impl RefUnwindSafe for ListGroupsRequest
impl Send for ListGroupsRequest
impl Sync for ListGroupsRequest
impl Unpin for ListGroupsRequest
impl UnwindSafe for ListGroupsRequest
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