[][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 PartialEq<Patch> for Patch[src]

impl Default for Patch[src]

impl Clone for Patch[src]

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

Performs copy-assignment from source. Read more

impl Debug for Patch[src]

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

Auto Trait Implementations

impl Send for Patch

impl Sync for Patch

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self