Struct google_ondemandscanning1::api::DiscoveryOccurrence[][src]

pub struct DiscoveryOccurrence {
    pub analysis_status: Option<String>,
    pub analysis_status_error: Option<Status>,
    pub continuous_analysis: Option<String>,
    pub cpe: Option<String>,
    pub last_scan_time: Option<String>,
}

Provides information about the analysis status of a discovered resource.

This type is not used in any activity, and only used as part of another schema.

Fields

analysis_status: Option<String>

The status of discovery for the resource.

analysis_status_error: Option<Status>

When an error is encountered this will contain a LocalizedMessage under details to show to the user. The LocalizedMessage is output only and populated by the API.

continuous_analysis: Option<String>

Whether the resource is continuously analyzed.

cpe: Option<String>

The CPE of the resource being scanned.

last_scan_time: Option<String>

The last time this resource was scanned.

Trait Implementations

impl Clone for DiscoveryOccurrence[src]

impl Debug for DiscoveryOccurrence[src]

impl Default for DiscoveryOccurrence[src]

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

impl Part for DiscoveryOccurrence[src]

impl Serialize for DiscoveryOccurrence[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> Instrument 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.