pub struct MacOSGeneralDeviceConfiguration {
pub compliant_apps_list: Vec<AppListItem>,
pub compliant_app_list_type: AppListType,
pub email_in_domain_suffixes: Vec<String>,
pub password_block_simple: bool,
pub password_expiration_days: i32,
pub password_minimum_character_set_count: i32,
pub password_minimum_length: i32,
pub password_minutes_of_inactivity_before_lock: i32,
pub password_minutes_of_inactivity_before_screen_timeout: i32,
pub password_previous_password_block_count: i32,
pub password_required_type: RequiredPasswordType,
pub password_required: bool,
}
Fields§
§compliant_apps_list: Vec<AppListItem>
§compliant_app_list_type: AppListType
§email_in_domain_suffixes: Vec<String>
§password_block_simple: bool
§password_expiration_days: i32
§password_minimum_character_set_count: i32
§password_minimum_length: i32
§password_minutes_of_inactivity_before_lock: i32
§password_minutes_of_inactivity_before_screen_timeout: i32
§password_previous_password_block_count: i32
§password_required_type: RequiredPasswordType
§password_required: bool
Trait Implementations§
Source§impl Clone for MacOSGeneralDeviceConfiguration
impl Clone for MacOSGeneralDeviceConfiguration
Source§fn clone(&self) -> MacOSGeneralDeviceConfiguration
fn clone(&self) -> MacOSGeneralDeviceConfiguration
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for MacOSGeneralDeviceConfiguration
impl<'de> Deserialize<'de> for MacOSGeneralDeviceConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 MacOSGeneralDeviceConfiguration
impl PartialEq for MacOSGeneralDeviceConfiguration
Source§fn eq(&self, other: &MacOSGeneralDeviceConfiguration) -> bool
fn eq(&self, other: &MacOSGeneralDeviceConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for MacOSGeneralDeviceConfiguration
impl StructuralPartialEq for MacOSGeneralDeviceConfiguration
Auto Trait Implementations§
impl Freeze for MacOSGeneralDeviceConfiguration
impl RefUnwindSafe for MacOSGeneralDeviceConfiguration
impl Send for MacOSGeneralDeviceConfiguration
impl Sync for MacOSGeneralDeviceConfiguration
impl Unpin for MacOSGeneralDeviceConfiguration
impl UnwindSafe for MacOSGeneralDeviceConfiguration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more