pub struct ResourceTag {
pub resource_id: Option<String>,
pub tags_list: Option<Vec<Tag>>,
}Expand description
A resource tag.
Fields§
§resource_id: Option<String>Specifies the ARN of the resource.
A list of tags.
Trait Implementations§
Source§impl Clone for ResourceTag
impl Clone for ResourceTag
Source§fn clone(&self) -> ResourceTag
fn clone(&self) -> ResourceTag
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 ResourceTag
impl Debug for ResourceTag
Source§impl Default for ResourceTag
impl Default for ResourceTag
Source§fn default() -> ResourceTag
fn default() -> ResourceTag
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResourceTag
impl<'de> Deserialize<'de> for ResourceTag
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 ResourceTag
impl PartialEq for ResourceTag
impl StructuralPartialEq for ResourceTag
Auto Trait Implementations§
impl Freeze for ResourceTag
impl RefUnwindSafe for ResourceTag
impl Send for ResourceTag
impl Sync for ResourceTag
impl Unpin for ResourceTag
impl UnwindSafe for ResourceTag
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