pub struct AndroidManagedAppProtection {
pub screen_capture_blocked: bool,
pub disable_app_encryption_if_device_encryption_is_enabled: bool,
pub encrypt_app_data: bool,
pub deployed_app_count: i32,
pub minimum_required_patch_version: String,
pub minimum_warning_patch_version: String,
pub apps: Vec<ManagedMobileApp>,
pub deployment_summary: ManagedAppPolicyDeploymentSummary,
}
Fields§
§screen_capture_blocked: bool
§disable_app_encryption_if_device_encryption_is_enabled: bool
§encrypt_app_data: bool
§deployed_app_count: i32
§minimum_required_patch_version: String
§minimum_warning_patch_version: String
§apps: Vec<ManagedMobileApp>
§deployment_summary: ManagedAppPolicyDeploymentSummary
Trait Implementations§
Source§impl Clone for AndroidManagedAppProtection
impl Clone for AndroidManagedAppProtection
Source§fn clone(&self) -> AndroidManagedAppProtection
fn clone(&self) -> AndroidManagedAppProtection
Returns a duplicate 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 Debug for AndroidManagedAppProtection
impl Debug for AndroidManagedAppProtection
Source§impl<'de> Deserialize<'de> for AndroidManagedAppProtection
impl<'de> Deserialize<'de> for AndroidManagedAppProtection
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
impl Eq for AndroidManagedAppProtection
impl StructuralPartialEq for AndroidManagedAppProtection
Auto Trait Implementations§
impl Freeze for AndroidManagedAppProtection
impl RefUnwindSafe for AndroidManagedAppProtection
impl Send for AndroidManagedAppProtection
impl Sync for AndroidManagedAppProtection
impl Unpin for AndroidManagedAppProtection
impl UnwindSafe for AndroidManagedAppProtection
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