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

pub struct WindowsUpdate {
    pub identity: Option<Identity>,
    pub title: String,
    pub description: String,
    pub categories: Vec<Category>,
    pub kb_article_ids: Vec<String>,
    pub support_url: String,
    pub last_published_timestamp: Option<Timestamp>,
}

Windows Update represents the metadata about the update for the Windows operating system. The fields in this message come from the Windows Update API documented at https://docs.microsoft.com/en-us/windows/win32/api/wuapi/nn-wuapi-iupdate.

Fields

identity: Option<Identity>

Required - The unique identifier for the update.

title: String

The localized title of the update.

description: String

The localized description of the update.

categories: Vec<Category>

The list of categories to which the update belongs.

kb_article_ids: Vec<String>

The Microsoft Knowledge Base article IDs that are associated with the update.

support_url: String

The hyperlink to the support information for the update.

last_published_timestamp: Option<Timestamp>

The last published timestamp of the update.

Trait Implementations

impl Clone for WindowsUpdate[src]

impl Debug for WindowsUpdate[src]

impl Default for WindowsUpdate[src]

impl Message for WindowsUpdate[src]

impl PartialEq<WindowsUpdate> for WindowsUpdate[src]

impl StructuralPartialEq for WindowsUpdate[src]

Auto Trait Implementations

impl RefUnwindSafe for WindowsUpdate

impl Send for WindowsUpdate

impl Sync for WindowsUpdate

impl Unpin for WindowsUpdate

impl UnwindSafe for WindowsUpdate

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]