[][src]Struct tenable::types::Tags

pub struct Tags {
    pub tag_uuid: Option<String>,
    pub tag_key: Option<String>,
    pub tag_value: Option<String>,
    pub added_by: Option<String>,
    pub added_at: Option<String>,
}

Tags blueprint

Fields

tag_uuid: Option<String>

The UUID of the tag.

tag_key: Option<String>

The tag category (the first half of the category:value pair).

tag_value: Option<String>

The tag value (the second half of the category:value pair).

added_by: Option<String>

The UUID of the user who assigned the tag to the asset.

added_at: Option<String>

The ISO timestamp when the tag was assigned to the asset.

Trait Implementations

impl Clone for Tags[src]

impl Debug for Tags[src]

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

impl PartialEq<Tags> for Tags[src]

impl Serialize for Tags[src]

impl StructuralPartialEq for Tags[src]

Auto Trait Implementations

impl RefUnwindSafe for Tags

impl Send for Tags

impl Sync for Tags

impl Unpin for Tags

impl UnwindSafe for Tags

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: for<'de> Deserialize<'de>, 
[src]

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

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

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.