Struct google_androidenterprise1::api::AutoInstallPolicy[][src]

pub struct AutoInstallPolicy {
    pub auto_install_constraint: Option<Vec<AutoInstallConstraint>>,
    pub auto_install_mode: Option<String>,
    pub auto_install_priority: Option<i32>,
    pub minimum_version_code: Option<i32>,
}

There is no detailed description.

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

Fields

auto_install_constraint: Option<Vec<AutoInstallConstraint>>

The constraints for auto-installing the app. You can specify a maximum of one constraint.

auto_install_mode: Option<String>

The auto-install mode. If unset defaults to “doNotAutoInstall”.

auto_install_priority: Option<i32>

The priority of the install, as an unsigned integer. A lower number means higher priority.

minimum_version_code: Option<i32>

The minimum version of the app. If a lower version of the app is installed, then the app will be auto-updated according to the auto-install constraints, instead of waiting for the regular auto-update. You can set a minimum version code for at most 20 apps per device.

Trait Implementations

impl Clone for AutoInstallPolicy[src]

impl Debug for AutoInstallPolicy[src]

impl Default for AutoInstallPolicy[src]

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

impl Part for AutoInstallPolicy[src]

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