[][src]Struct graph_rs_types::entitytypes::Windows81CompliancePolicy

pub struct Windows81CompliancePolicy {
    pub password_required: bool,
    pub password_block_simple: bool,
    pub password_expiration_days: i32,
    pub password_minimum_length: i32,
    pub password_minutes_of_inactivity_before_lock: i32,
    pub password_minimum_character_set_count: i32,
    pub password_required_type: RequiredPasswordType,
    pub password_previous_password_block_count: i32,
    pub os_minimum_version: String,
    pub os_maximum_version: String,
    pub storage_require_encryption: bool,
}

Fields

password_required: boolpassword_block_simple: boolpassword_expiration_days: i32password_minimum_length: i32password_minutes_of_inactivity_before_lock: i32password_minimum_character_set_count: i32password_required_type: RequiredPasswordTypepassword_previous_password_block_count: i32os_minimum_version: Stringos_maximum_version: Stringstorage_require_encryption: bool

Trait Implementations

impl Eq for Windows81CompliancePolicy[src]

impl Clone for Windows81CompliancePolicy[src]

impl PartialEq<Windows81CompliancePolicy> for Windows81CompliancePolicy[src]

impl Debug for Windows81CompliancePolicy[src]

impl Serialize for Windows81CompliancePolicy[src]

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