[][src]Struct graph_rs_types::entitytypes::WindowsInformationProtectionPolicy

pub struct WindowsInformationProtectionPolicy {
    pub revoke_on_mdm_handoff_disabled: bool,
    pub mdm_enrollment_url: String,
    pub windows_hello_for_business_blocked: bool,
    pub pin_minimum_length: i32,
    pub pin_uppercase_letters: WindowsInformationProtectionPinCharacterRequirements,
    pub pin_lowercase_letters: WindowsInformationProtectionPinCharacterRequirements,
    pub pin_special_characters: WindowsInformationProtectionPinCharacterRequirements,
    pub pin_expiration_days: i32,
    pub number_of_past_pins_remembered: i32,
    pub password_maximum_attempt_count: i32,
    pub minutes_of_inactivity_before_device_lock: i32,
    pub days_without_contact_before_unenroll: i32,
}

Fields

revoke_on_mdm_handoff_disabled: boolmdm_enrollment_url: Stringwindows_hello_for_business_blocked: boolpin_minimum_length: i32pin_uppercase_letters: WindowsInformationProtectionPinCharacterRequirementspin_lowercase_letters: WindowsInformationProtectionPinCharacterRequirementspin_special_characters: WindowsInformationProtectionPinCharacterRequirementspin_expiration_days: i32number_of_past_pins_remembered: i32password_maximum_attempt_count: i32minutes_of_inactivity_before_device_lock: i32days_without_contact_before_unenroll: i32

Trait Implementations

impl Eq for WindowsInformationProtectionPolicy[src]

impl Clone for WindowsInformationProtectionPolicy[src]

impl PartialEq<WindowsInformationProtectionPolicy> for WindowsInformationProtectionPolicy[src]

impl Debug for WindowsInformationProtectionPolicy[src]

impl Serialize for WindowsInformationProtectionPolicy[src]

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