[][src]Struct google_androidmanagement1::SystemUpdate

pub struct SystemUpdate {
    pub end_minutes: Option<i32>,
    pub freeze_periods: Option<Vec<FreezePeriod>>,
    pub start_minutes: Option<i32>,
    pub type_: Option<String>,
}

Configuration for managing system updates

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

Fields

end_minutes: Option<i32>

If the type is WINDOWED, the end of the maintenance window, measured as the number of minutes after midnight in device's local time. This value must be between 0 and 1439, inclusive. If this value is less than start_minutes, then the maintenance window spans midnight. If the maintenance window specified is smaller than 30 minutes, the actual window is extended to 30 minutes beyond the start time.

freeze_periods: Option<Vec<FreezePeriod>>

An annually repeating time period in which over-the-air (OTA) system updates are postponed to freeze the OS version running on a device. To prevent freezing the device indefinitely, each freeze period must be separated by at least 60 days.

start_minutes: Option<i32>

If the type is WINDOWED, the start of the maintenance window, measured as the number of minutes after midnight in the device's local time. This value must be between 0 and 1439, inclusive.

type_: Option<String>

The type of system update to configure.

Trait Implementations

impl Clone for SystemUpdate[src]

impl Debug for SystemUpdate[src]

impl Default for SystemUpdate[src]

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

impl Part for SystemUpdate[src]

impl Serialize for SystemUpdate[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, 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.

impl<T> Typeable for T where
    T: Any