[][src]Struct rusoto_ssm::Patch

pub struct Patch {
    pub classification: Option<String>,
    pub content_url: Option<String>,
    pub description: Option<String>,
    pub id: Option<String>,
    pub kb_number: Option<String>,
    pub language: Option<String>,
    pub msrc_number: Option<String>,
    pub msrc_severity: Option<String>,
    pub product: Option<String>,
    pub product_family: Option<String>,
    pub release_date: Option<f64>,
    pub title: Option<String>,
    pub vendor: Option<String>,
}

Represents metadata about a patch.

Fields

classification: Option<String>

The classification of the patch (for example, SecurityUpdates, Updates, CriticalUpdates).

content_url: Option<String>

The URL where more information can be obtained about the patch.

description: Option<String>

The description of the patch.

id: Option<String>

The ID of the patch (this is different than the Microsoft Knowledge Base ID).

kb_number: Option<String>

The Microsoft Knowledge Base ID of the patch.

language: Option<String>

The language of the patch if it's language-specific.

msrc_number: Option<String>

The ID of the MSRC bulletin the patch is related to.

msrc_severity: Option<String>

The severity of the patch (for example Critical, Important, Moderate).

product: Option<String>

The specific product the patch is applicable for (for example, WindowsServer2016).

product_family: Option<String>

The product family the patch is applicable for (for example, Windows).

release_date: Option<f64>

The date the patch was released.

title: Option<String>

The title of the patch.

vendor: Option<String>

The name of the vendor providing the patch.

Trait Implementations

impl Clone for Patch[src]

impl Default for Patch[src]

impl PartialEq<Patch> for Patch[src]

impl Debug for Patch[src]

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

Auto Trait Implementations

impl Send for Patch

impl Sync for Patch

impl Unpin for Patch

impl UnwindSafe for Patch

impl RefUnwindSafe for Patch

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self