Struct gapi_grpc::grafeas::v1::UpgradeDistribution[][src]

pub struct UpgradeDistribution {
    pub cpe_uri: String,
    pub classification: String,
    pub severity: String,
    pub cve: Vec<String>,
}

The Upgrade Distribution represents metadata about the Upgrade for each operating system (CPE). Some distributions have additional metadata around updates, classifying them into various categories and severities.

Fields

cpe_uri: String

Required - The specific operating system this metadata applies to. See https://cpe.mitre.org/specification/.

classification: String

The operating system classification of this Upgrade, as specified by the upstream operating system upgrade feed. For Windows the classification is one of the category_ids listed at https://docs.microsoft.com/en-us/previous-versions/windows/desktop/ff357803(v=vs.85)

severity: String

The severity as specified by the upstream operating system.

cve: Vec<String>

The cve tied to this Upgrade.

Trait Implementations

impl Clone for UpgradeDistribution[src]

impl Debug for UpgradeDistribution[src]

impl Default for UpgradeDistribution[src]

impl Message for UpgradeDistribution[src]

impl PartialEq<UpgradeDistribution> for UpgradeDistribution[src]

impl StructuralPartialEq for UpgradeDistribution[src]

Auto Trait Implementations

impl RefUnwindSafe for UpgradeDistribution

impl Send for UpgradeDistribution

impl Sync for UpgradeDistribution

impl Unpin for UpgradeDistribution

impl UnwindSafe for UpgradeDistribution

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]