pub struct DescribeGroupsResponse {
pub groups: Option<Vec<GroupMetadata>>,
pub marker: Option<String>,
}
Fields§
§groups: Option<Vec<GroupMetadata>>
The list of groups.
marker: Option<String>
The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
Trait Implementations§
Source§impl Clone for DescribeGroupsResponse
impl Clone for DescribeGroupsResponse
Source§fn clone(&self) -> DescribeGroupsResponse
fn clone(&self) -> DescribeGroupsResponse
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 DescribeGroupsResponse
impl Debug for DescribeGroupsResponse
Source§impl Default for DescribeGroupsResponse
impl Default for DescribeGroupsResponse
Source§fn default() -> DescribeGroupsResponse
fn default() -> DescribeGroupsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeGroupsResponse
impl<'de> Deserialize<'de> for DescribeGroupsResponse
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 DescribeGroupsResponse
impl PartialEq for DescribeGroupsResponse
impl StructuralPartialEq for DescribeGroupsResponse
Auto Trait Implementations§
impl Freeze for DescribeGroupsResponse
impl RefUnwindSafe for DescribeGroupsResponse
impl Send for DescribeGroupsResponse
impl Sync for DescribeGroupsResponse
impl Unpin for DescribeGroupsResponse
impl UnwindSafe for DescribeGroupsResponse
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