[][src]Struct google_androidmanagement1::ComplianceRule

pub struct ComplianceRule {
    pub api_level_condition: Option<ApiLevelCondition>,
    pub package_names_to_disable: Option<Vec<String>>,
    pub non_compliance_detail_condition: Option<NonComplianceDetailCondition>,
    pub disable_apps: Option<bool>,
}

A rule declaring which mitigating actions to take when a device is not compliant with its policy. For every rule, there is always an implicit mitigating action to set policy_compliant to false for the Device resource, and display a message on the device indicating that the device is not compliant with its policy. Other mitigating actions may optionally be taken as well, depending on the field values in the rule.

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

Fields

api_level_condition: Option<ApiLevelCondition>

A condition which is satisfied if the Android Framework API level on the device doesn't meet a minimum requirement.

package_names_to_disable: Option<Vec<String>>

If set, the rule includes a mitigating action to disable apps specified in the list, but app data is preserved.

non_compliance_detail_condition: Option<NonComplianceDetailCondition>

A condition which is satisfied if there exists any matching NonComplianceDetail for the device.

disable_apps: Option<bool>

If set to true, the rule includes a mitigating action to disable apps so that the device is effectively disabled, but app data is preserved. If the device is running an app in locked task mode, the app will be closed and a UI showing the reason for non-compliance will be displayed.

Trait Implementations

impl Clone for ComplianceRule[src]

impl Debug for ComplianceRule[src]

impl Default for ComplianceRule[src]

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

impl Part for ComplianceRule[src]

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