Struct google_androidmanagement1::DeviceSettings[][src]

pub struct DeviceSettings {
    pub adb_enabled: Option<bool>,
    pub is_encrypted: Option<bool>,
    pub development_settings_enabled: Option<bool>,
    pub is_device_secure: Option<bool>,
    pub encryption_status: Option<String>,
    pub unknown_sources_enabled: Option<bool>,
    pub verify_apps_enabled: Option<bool>,
}

Information about security related device settings on device.

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

Fields

Whether ADB (https://developer.android.com/studio/command-line/adb.html) is enabled on the device.

Whether the storage encryption is enabled.

Whether developer mode is enabled on the device.

Whether the device is secured with PIN/password.

Encryption status from DevicePolicyManager.

Whether installing apps from unknown sources is enabled.

Whether Verify Apps (Google Play Protect (https://support.google.com/googleplay/answer/2812853)) is enabled on the device.

Trait Implementations

impl Default for DeviceSettings
[src]

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

impl Clone for DeviceSettings
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DeviceSettings
[src]

Formats the value using the given formatter. Read more

impl Part for DeviceSettings
[src]

Auto Trait Implementations