pub struct ListOrganizationsRequest {
pub max_results: Option<i64>,
pub next_token: Option<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.
Trait Implementations§
Source§impl Clone for ListOrganizationsRequest
impl Clone for ListOrganizationsRequest
Source§fn clone(&self) -> ListOrganizationsRequest
fn clone(&self) -> ListOrganizationsRequest
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 ListOrganizationsRequest
impl Debug for ListOrganizationsRequest
Source§impl Default for ListOrganizationsRequest
impl Default for ListOrganizationsRequest
Source§fn default() -> ListOrganizationsRequest
fn default() -> ListOrganizationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListOrganizationsRequest
impl PartialEq for ListOrganizationsRequest
Source§impl Serialize for ListOrganizationsRequest
impl Serialize for ListOrganizationsRequest
impl StructuralPartialEq for ListOrganizationsRequest
Auto Trait Implementations§
impl Freeze for ListOrganizationsRequest
impl RefUnwindSafe for ListOrganizationsRequest
impl Send for ListOrganizationsRequest
impl Sync for ListOrganizationsRequest
impl Unpin for ListOrganizationsRequest
impl UnwindSafe for ListOrganizationsRequest
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