Struct google_ondemandscanning1::api::PackageData[][src]

pub struct PackageData {
    pub cpe_uri: Option<String>,
    pub os: Option<String>,
    pub os_version: Option<String>,
    pub package: Option<String>,
    pub version: Option<String>,
}

There is no detailed description.

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

Fields

cpe_uri: Option<String>

The cpe_uri in [cpe format] (https://cpe.mitre.org/specification/) in which the vulnerability may manifest. Examples include distro or storage location for vulnerable jar.

os: Option<String>

The OS affected by a vulnerability This field is deprecated and the information is in cpe_uri

os_version: Option<String>

The version of the OS This field is deprecated and the information is in cpe_uri

package: Option<String>

The package being analysed for vulnerabilities

version: Option<String>

The version of the package being analysed

Trait Implementations

impl Clone for PackageData[src]

impl Debug for PackageData[src]

impl Default for PackageData[src]

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

impl Part for PackageData[src]

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