pub struct ListGroupsOutput {
pub group_identifiers: Option<Vec<GroupIdentifier>>,
pub next_token: Option<String>,
}Fields§
§group_identifiers: Option<Vec<GroupIdentifier>>A list of GroupIdentifier objects. Each identifier is an object that contains both the Name and the GroupArn.
next_token: Option<String>If present, indicates that more output is available than is included in the current response. Use this value in the NextToken request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the NextToken response element comes back as null.
Trait Implementations§
Source§impl Clone for ListGroupsOutput
impl Clone for ListGroupsOutput
Source§fn clone(&self) -> ListGroupsOutput
fn clone(&self) -> ListGroupsOutput
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 ListGroupsOutput
impl Debug for ListGroupsOutput
Source§impl Default for ListGroupsOutput
impl Default for ListGroupsOutput
Source§fn default() -> ListGroupsOutput
fn default() -> ListGroupsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListGroupsOutput
impl<'de> Deserialize<'de> for ListGroupsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListGroupsOutput
impl PartialEq for ListGroupsOutput
impl StructuralPartialEq for ListGroupsOutput
Auto Trait Implementations§
impl Freeze for ListGroupsOutput
impl RefUnwindSafe for ListGroupsOutput
impl Send for ListGroupsOutput
impl Sync for ListGroupsOutput
impl Unpin for ListGroupsOutput
impl UnwindSafe for ListGroupsOutput
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