Struct gapi_grpc::grafeas::v1::vulnerability_occurrence::PackageIssue[][src]

pub struct PackageIssue {
    pub affected_cpe_uri: String,
    pub affected_package: String,
    pub affected_version: Option<Version>,
    pub fixed_cpe_uri: String,
    pub fixed_package: String,
    pub fixed_version: Option<Version>,
    pub fix_available: bool,
}

A detail for a distro and package this vulnerability occurrence was found in and its associated fix (if one is available).

Fields

affected_cpe_uri: String

Required. The CPE URI this vulnerability was found in.

affected_package: String

Required. The package this vulnerability was found in.

affected_version: Option<Version>

Required. The version of the package that is installed on the resource affected by this vulnerability.

fixed_cpe_uri: String

The CPE URI this vulnerability was fixed in. It is possible for this to be different from the affected_cpe_uri.

fixed_package: String

The package this vulnerability was fixed in. It is possible for this to be different from the affected_package.

fixed_version: Option<Version>

Required. The version of the package this vulnerability was fixed in. Setting this to VersionKind.MAXIMUM means no fix is yet available.

fix_available: bool

Output only. Whether a fix is available for this package.

Trait Implementations

impl Clone for PackageIssue[src]

impl Debug for PackageIssue[src]

impl Default for PackageIssue[src]

impl Message for PackageIssue[src]

impl PartialEq<PackageIssue> for PackageIssue[src]

impl StructuralPartialEq for PackageIssue[src]

Auto Trait Implementations

impl RefUnwindSafe for PackageIssue

impl Send for PackageIssue

impl Sync for PackageIssue

impl Unpin for PackageIssue

impl UnwindSafe for PackageIssue

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]