[][src]Struct tenable::types::AcrAsset

pub struct AcrAsset {
    pub id: Option<String>,
    pub fqdn: Option<Vec<String>>,
    pub mac_address: Option<String>,
    pub netbios_name: Option<String>,
    pub ipv4: Option<Vec<String>>,
}

Each object can contain a single instance of the properties described below. You can combine multiple instances of this object, each containing a different single property. TODO: Cow TODO: Switch to enum

Fields

id: Option<String>

The UUID for a specific asset. Use this value as the unique key for the asset.

fqdn: Option<Vec<String>>

Fully-qualified domain names (FQDNs) associated with the asset or assets.

mac_address: Option<String>

MAC addresses associated with the asset or assets.

netbios_name: Option<String>

The NetBIOS name for the asset.

ipv4: Option<Vec<String>>

IPv4 addresses associated with the asset or assets.

Trait Implementations

impl Clone for AcrAsset[src]

impl Debug for AcrAsset[src]

impl Default for AcrAsset[src]

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

impl PartialEq<AcrAsset> for AcrAsset[src]

impl Serialize for AcrAsset[src]

impl StructuralPartialEq for AcrAsset[src]

Auto Trait Implementations

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.