[][src]Struct google_containeranalysis1_beta1::Distribution

pub struct Distribution {
    pub cpe_uri: Option<String>,
    pub maintainer: Option<String>,
    pub description: Option<String>,
    pub url: Option<String>,
    pub latest_version: Option<Version>,
    pub architecture: Option<String>,
}

This represents a particular channel of distribution for a given package. E.g., Debian's jessie-backports dpkg mirror.

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

Fields

cpe_uri: Option<String>

Required. The cpe_uri in CPE format denoting the package manager version distributing a package.

maintainer: Option<String>

A freeform string denoting the maintainer of this package.

description: Option<String>

The distribution channel-specific description of this package.

url: Option<String>

The distribution channel-specific homepage for this package.

latest_version: Option<Version>

The latest available version of this package in this distribution channel.

architecture: Option<String>

The CPU architecture for which packages in this distribution channel were built.

Trait Implementations

impl Part for Distribution[src]

impl Default for Distribution[src]

impl Clone for Distribution[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Distribution[src]

impl Serialize for Distribution[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]