pub struct GetGroupResponse {
pub group: Group,
pub is_truncated: Option<bool>,
pub marker: Option<String>,
pub users: Vec<User>,
}Expand description
IAM GetGroupResponse.
Fields§
§group: Group§is_truncated: Option<bool>§marker: Option<String>§users: Vec<User>Trait Implementations§
Source§impl Clone for GetGroupResponse
impl Clone for GetGroupResponse
Source§fn clone(&self) -> GetGroupResponse
fn clone(&self) -> GetGroupResponse
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 GetGroupResponse
impl Debug for GetGroupResponse
Source§impl Default for GetGroupResponse
impl Default for GetGroupResponse
Source§fn default() -> GetGroupResponse
fn default() -> GetGroupResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetGroupResponse
impl<'de> Deserialize<'de> for GetGroupResponse
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
Auto Trait Implementations§
impl Freeze for GetGroupResponse
impl RefUnwindSafe for GetGroupResponse
impl Send for GetGroupResponse
impl Sync for GetGroupResponse
impl Unpin for GetGroupResponse
impl UnsafeUnpin for GetGroupResponse
impl UnwindSafe for GetGroupResponse
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