[][src]Struct rusoto_appmesh::TagRef

pub struct TagRef {
    pub key: String,
    pub value: Option<String>,
}

Optional metadata that you apply to a resource to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

Fields

key: String

One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

value: Option<String>

The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).

Trait Implementations

impl Clone for TagRef[src]

impl Debug for TagRef[src]

impl Default for TagRef[src]

impl<'de> Deserialize<'de> for TagRef[src]

impl PartialEq<TagRef> for TagRef[src]

impl Serialize for TagRef[src]

impl StructuralPartialEq for TagRef[src]

Auto Trait Implementations

impl RefUnwindSafe for TagRef

impl Send for TagRef

impl Sync for TagRef

impl Unpin for TagRef

impl UnwindSafe for TagRef

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.