[][src]Struct graph_rs_types::entitytypes::AndroidCompliancePolicy

pub struct AndroidCompliancePolicy {
    pub password_required: bool,
    pub password_minimum_length: i32,
    pub password_required_type: AndroidRequiredPasswordType,
    pub password_minutes_of_inactivity_before_lock: i32,
    pub password_expiration_days: i32,
    pub password_previous_password_block_count: i32,
    pub security_prevent_install_apps_from_unknown_sources: bool,
    pub security_disable_usb_debugging: bool,
    pub security_require_verify_apps: bool,
    pub device_threat_protection_enabled: bool,
    pub device_threat_protection_required_security_level: DeviceThreatProtectionLevel,
    pub security_block_jailbroken_devices: bool,
    pub os_minimum_version: String,
    pub os_maximum_version: String,
    pub min_android_security_patch_level: String,
    pub storage_require_encryption: bool,
    pub security_require_safety_net_attestation_basic_integrity: bool,
    pub security_require_safety_net_attestation_certified_device: bool,
    pub security_require_google_play_services: bool,
    pub security_require_up_to_date_security_providers: bool,
    pub security_require_company_portal_app_integrity: bool,
}

Fields

password_required: boolpassword_minimum_length: i32password_required_type: AndroidRequiredPasswordTypepassword_minutes_of_inactivity_before_lock: i32password_expiration_days: i32password_previous_password_block_count: i32security_prevent_install_apps_from_unknown_sources: boolsecurity_disable_usb_debugging: boolsecurity_require_verify_apps: booldevice_threat_protection_enabled: booldevice_threat_protection_required_security_level: DeviceThreatProtectionLevelsecurity_block_jailbroken_devices: boolos_minimum_version: Stringos_maximum_version: Stringmin_android_security_patch_level: Stringstorage_require_encryption: boolsecurity_require_safety_net_attestation_basic_integrity: boolsecurity_require_safety_net_attestation_certified_device: boolsecurity_require_google_play_services: boolsecurity_require_up_to_date_security_providers: boolsecurity_require_company_portal_app_integrity: bool

Trait Implementations

impl Eq for AndroidCompliancePolicy[src]

impl Clone for AndroidCompliancePolicy[src]

impl PartialEq<AndroidCompliancePolicy> for AndroidCompliancePolicy[src]

impl Debug for AndroidCompliancePolicy[src]

impl Serialize for AndroidCompliancePolicy[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]