Struct WindowsPhone81GeneralConfiguration

Source
pub struct WindowsPhone81GeneralConfiguration {
Show 29 fields pub apply_only_to_windows_phone81: bool, pub apps_block_copy_paste: bool, pub bluetooth_blocked: bool, pub camera_blocked: bool, pub cellular_block_wifi_tethering: bool, pub compliant_apps_list: Vec<AppListItem>, pub compliant_app_list_type: AppListType, pub diagnostic_data_block_submission: bool, pub email_block_adding_accounts: bool, pub location_services_blocked: bool, pub microsoft_account_blocked: bool, pub nfc_blocked: bool, pub password_block_simple: 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_sign_in_failure_count_before_factory_reset: i32, pub password_required_type: RequiredPasswordType, pub password_required: bool, pub screen_capture_blocked: bool, pub storage_block_removable_storage: bool, pub storage_require_encryption: bool, pub web_browser_blocked: bool, pub wifi_blocked: bool, pub wifi_block_automatic_connect_hotspots: bool, pub wifi_block_hotspot_reporting: bool, pub windows_store_blocked: bool,
}

Fields§

§apply_only_to_windows_phone81: bool§apps_block_copy_paste: bool§bluetooth_blocked: bool§camera_blocked: bool§cellular_block_wifi_tethering: bool§compliant_apps_list: Vec<AppListItem>§compliant_app_list_type: AppListType§diagnostic_data_block_submission: bool§email_block_adding_accounts: bool§location_services_blocked: bool§microsoft_account_blocked: bool§nfc_blocked: bool§password_block_simple: 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_sign_in_failure_count_before_factory_reset: i32§password_required_type: RequiredPasswordType§password_required: bool§screen_capture_blocked: bool§storage_block_removable_storage: bool§storage_require_encryption: bool§web_browser_blocked: bool§wifi_blocked: bool§wifi_block_automatic_connect_hotspots: bool§wifi_block_hotspot_reporting: bool§windows_store_blocked: bool

Trait Implementations§

Source§

impl Clone for WindowsPhone81GeneralConfiguration

Source§

fn clone(&self) -> WindowsPhone81GeneralConfiguration

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 WindowsPhone81GeneralConfiguration

Source§

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

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

impl<'de> Deserialize<'de> for WindowsPhone81GeneralConfiguration

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 WindowsPhone81GeneralConfiguration

Source§

fn eq(&self, other: &WindowsPhone81GeneralConfiguration) -> 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 WindowsPhone81GeneralConfiguration

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 WindowsPhone81GeneralConfiguration

Source§

impl StructuralPartialEq for WindowsPhone81GeneralConfiguration

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>,