[][src]Struct graph_rs_types::entitytypes::Windows10CompliancePolicy

pub struct Windows10CompliancePolicy {
    pub password_required: bool,
    pub password_block_simple: bool,
    pub password_required_to_unlock_from_idle: bool,
    pub password_minutes_of_inactivity_before_lock: i32,
    pub password_expiration_days: i32,
    pub password_minimum_length: i32,
    pub password_minimum_character_set_count: i32,
    pub password_required_type: RequiredPasswordType,
    pub password_previous_password_block_count: i32,
    pub require_healthy_device_report: bool,
    pub os_minimum_version: String,
    pub os_maximum_version: String,
    pub mobile_os_minimum_version: String,
    pub mobile_os_maximum_version: String,
    pub early_launch_anti_malware_driver_enabled: bool,
    pub bit_locker_enabled: bool,
    pub secure_boot_enabled: bool,
    pub code_integrity_enabled: bool,
    pub storage_require_encryption: bool,
}

Fields

password_required: boolpassword_block_simple: boolpassword_required_to_unlock_from_idle: boolpassword_minutes_of_inactivity_before_lock: i32password_expiration_days: i32password_minimum_length: i32password_minimum_character_set_count: i32password_required_type: RequiredPasswordTypepassword_previous_password_block_count: i32require_healthy_device_report: boolos_minimum_version: Stringos_maximum_version: Stringmobile_os_minimum_version: Stringmobile_os_maximum_version: Stringearly_launch_anti_malware_driver_enabled: boolbit_locker_enabled: boolsecure_boot_enabled: boolcode_integrity_enabled: boolstorage_require_encryption: bool

Trait Implementations

impl Eq for Windows10CompliancePolicy[src]

impl Clone for Windows10CompliancePolicy[src]

impl PartialEq<Windows10CompliancePolicy> for Windows10CompliancePolicy[src]

impl Debug for Windows10CompliancePolicy[src]

impl Serialize for Windows10CompliancePolicy[src]

impl<'de> Deserialize<'de> for Windows10CompliancePolicy[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]