Struct google_androidmanagement1::ApiLevelCondition[][src]

pub struct ApiLevelCondition {
    pub min_api_level: Option<i32>,
}

A compliance rule condition which is satisfied if the Android Framework API level on the device doesn't meet a minimum requirement. There can only be one rule with this type of condition per policy.

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

Fields

The minimum desired Android Framework API level. If the device doesn't meet the minimum requirement, this condition is satisfied. Must be greater than zero.

Trait Implementations

impl Default for ApiLevelCondition
[src]

Returns the "default value" for a type. Read more

impl Clone for ApiLevelCondition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ApiLevelCondition
[src]

Formats the value using the given formatter. Read more

impl Part for ApiLevelCondition
[src]

Auto Trait Implementations