Struct Windows81GeneralConfiguration

Source
pub struct Windows81GeneralConfiguration {
Show 33 fields pub accounts_block_adding_non_microsoft_account_email: bool, pub apply_only_to_windows81: bool, pub browser_block_autofill: bool, pub browser_block_automatic_detection_of_intranet_sites: bool, pub browser_block_enterprise_mode_access: bool, pub browser_block_java_script: bool, pub browser_block_plugins: bool, pub browser_block_popups: bool, pub browser_block_sending_do_not_track_header: bool, pub browser_block_single_word_entry_on_intranet_sites: bool, pub browser_require_smart_screen: bool, pub browser_enterprise_mode_site_list_location: String, pub browser_internet_security_level: InternetSiteSecurityLevel, pub browser_intranet_security_level: SiteSecurityLevel, pub browser_logging_report_location: String, pub browser_require_high_security_for_restricted_sites: bool, pub browser_require_firewall: bool, pub browser_require_fraud_warning: bool, pub browser_trusted_sites_security_level: SiteSecurityLevel, pub cellular_block_data_roaming: bool, pub diagnostics_block_data_submission: bool, pub password_block_picture_password_and_pin: bool, pub password_expiration_days: i32, pub password_minimum_length: i32, pub password_minutes_of_inactivity_before_screen_timeout: i32, pub password_minimum_character_set_count: i32, pub password_previous_password_block_count: i32, pub password_required_type: RequiredPasswordType, pub password_sign_in_failure_count_before_factory_reset: i32, pub storage_require_device_encryption: bool, pub updates_require_automatic_updates: bool, pub user_account_control_settings: WindowsUserAccountControlSettings, pub work_folders_url: String,
}

Fields§

§accounts_block_adding_non_microsoft_account_email: bool§apply_only_to_windows81: bool§browser_block_autofill: bool§browser_block_automatic_detection_of_intranet_sites: bool§browser_block_enterprise_mode_access: bool§browser_block_java_script: bool§browser_block_plugins: bool§browser_block_popups: bool§browser_block_sending_do_not_track_header: bool§browser_block_single_word_entry_on_intranet_sites: bool§browser_require_smart_screen: bool§browser_enterprise_mode_site_list_location: String§browser_internet_security_level: InternetSiteSecurityLevel§browser_intranet_security_level: SiteSecurityLevel§browser_logging_report_location: String§browser_require_high_security_for_restricted_sites: bool§browser_require_firewall: bool§browser_require_fraud_warning: bool§browser_trusted_sites_security_level: SiteSecurityLevel§cellular_block_data_roaming: bool§diagnostics_block_data_submission: bool§password_block_picture_password_and_pin: bool§password_expiration_days: i32§password_minimum_length: i32§password_minutes_of_inactivity_before_screen_timeout: i32§password_minimum_character_set_count: i32§password_previous_password_block_count: i32§password_required_type: RequiredPasswordType§password_sign_in_failure_count_before_factory_reset: i32§storage_require_device_encryption: bool§updates_require_automatic_updates: bool§user_account_control_settings: WindowsUserAccountControlSettings§work_folders_url: String

Trait Implementations§

Source§

impl Clone for Windows81GeneralConfiguration

Source§

fn clone(&self) -> Windows81GeneralConfiguration

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Windows81GeneralConfiguration

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Windows81GeneralConfiguration

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for Windows81GeneralConfiguration

Source§

fn eq(&self, other: &Windows81GeneralConfiguration) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Windows81GeneralConfiguration

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for Windows81GeneralConfiguration

Source§

impl StructuralPartialEq for Windows81GeneralConfiguration

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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