pub struct GroupNameAndArn {
pub group_arn: Option<String>,
pub group_name: Option<String>,
}Expand description
The name and ARN of a group.
Fields§
§group_arn: Option<String>The group ARN.
group_name: Option<String>The group name.
Trait Implementations§
Source§impl Clone for GroupNameAndArn
impl Clone for GroupNameAndArn
Source§fn clone(&self) -> GroupNameAndArn
fn clone(&self) -> GroupNameAndArn
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 GroupNameAndArn
impl Debug for GroupNameAndArn
Source§impl Default for GroupNameAndArn
impl Default for GroupNameAndArn
Source§fn default() -> GroupNameAndArn
fn default() -> GroupNameAndArn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupNameAndArn
impl<'de> Deserialize<'de> for GroupNameAndArn
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 GroupNameAndArn
impl PartialEq for GroupNameAndArn
impl StructuralPartialEq for GroupNameAndArn
Auto Trait Implementations§
impl Freeze for GroupNameAndArn
impl RefUnwindSafe for GroupNameAndArn
impl Send for GroupNameAndArn
impl Sync for GroupNameAndArn
impl Unpin for GroupNameAndArn
impl UnwindSafe for GroupNameAndArn
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