pub struct GroupDetail {
pub arn: Option<String>,
pub attached_managed_policies: Vec<AttachedPolicy>,
pub create_date: Option<DateTime<Utc>>,
pub group_id: Option<String>,
pub group_name: Option<String>,
pub group_policy_list: Vec<PolicyDetail>,
pub path: Option<String>,
}Expand description
IAM GroupDetail.
Fields§
§arn: Option<String>§attached_managed_policies: Vec<AttachedPolicy>§create_date: Option<DateTime<Utc>>§group_id: Option<String>§group_name: Option<String>§group_policy_list: Vec<PolicyDetail>§path: Option<String>Trait Implementations§
Source§impl Clone for GroupDetail
impl Clone for GroupDetail
Source§fn clone(&self) -> GroupDetail
fn clone(&self) -> GroupDetail
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 GroupDetail
impl Debug for GroupDetail
Source§impl Default for GroupDetail
impl Default for GroupDetail
Source§fn default() -> GroupDetail
fn default() -> GroupDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupDetail
impl<'de> Deserialize<'de> for GroupDetail
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 GroupDetail
impl RefUnwindSafe for GroupDetail
impl Send for GroupDetail
impl Sync for GroupDetail
impl Unpin for GroupDetail
impl UnsafeUnpin for GroupDetail
impl UnwindSafe for GroupDetail
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