Struct google_androidmanagement1::api::SystemUpdateInfo[][src]

pub struct SystemUpdateInfo {
    pub update_received_time: Option<String>,
    pub update_status: Option<String>,
}

Information about a potential pending system update.

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

Fields

update_received_time: Option<String>

The time when the update was first available. A zero value indicates that this field is not set. This field is set only if an update is available (that is, updateStatus is neither UPDATE_STATUS_UNKNOWN nor UP_TO_DATE).

update_status: Option<String>

The status of an update: whether an update exists and what type it is.

Trait Implementations

impl Clone for SystemUpdateInfo[src]

impl Debug for SystemUpdateInfo[src]

impl Default for SystemUpdateInfo[src]

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

impl Part for SystemUpdateInfo[src]

impl Serialize for SystemUpdateInfo[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.