[][src]Struct graph_rs_types::entitytypes::ManagedAppProtection

pub struct ManagedAppProtection {
    pub period_offline_before_access_check: String,
    pub period_online_before_access_check: String,
    pub allowed_inbound_data_transfer_sources: ManagedAppDataTransferLevel,
    pub allowed_outbound_data_transfer_destinations: ManagedAppDataTransferLevel,
    pub organizational_credentials_required: bool,
    pub allowed_outbound_clipboard_sharing_level: ManagedAppClipboardSharingLevel,
    pub data_backup_blocked: bool,
    pub device_compliance_required: bool,
    pub managed_browser_to_open_links_required: bool,
    pub save_as_blocked: bool,
    pub period_offline_before_wipe_is_enforced: String,
    pub pin_required: bool,
    pub maximum_pin_retries: i32,
    pub simple_pin_blocked: bool,
    pub minimum_pin_length: i32,
    pub pin_character_set: ManagedAppPinCharacterSet,
    pub period_before_pin_reset: String,
    pub allowed_data_storage_locations: Vec<ManagedAppDataStorageLocation>,
    pub contact_sync_blocked: bool,
    pub print_blocked: bool,
    pub fingerprint_blocked: bool,
    pub disable_app_pin_if_device_pin_is_set: bool,
    pub minimum_required_os_version: String,
    pub minimum_warning_os_version: String,
    pub minimum_required_app_version: String,
    pub minimum_warning_app_version: String,
}

Fields

period_offline_before_access_check: Stringperiod_online_before_access_check: Stringallowed_inbound_data_transfer_sources: ManagedAppDataTransferLevelallowed_outbound_data_transfer_destinations: ManagedAppDataTransferLevelorganizational_credentials_required: boolallowed_outbound_clipboard_sharing_level: ManagedAppClipboardSharingLeveldata_backup_blocked: booldevice_compliance_required: boolmanaged_browser_to_open_links_required: boolsave_as_blocked: boolperiod_offline_before_wipe_is_enforced: Stringpin_required: boolmaximum_pin_retries: i32simple_pin_blocked: boolminimum_pin_length: i32pin_character_set: ManagedAppPinCharacterSetperiod_before_pin_reset: Stringallowed_data_storage_locations: Vec<ManagedAppDataStorageLocation>contact_sync_blocked: boolprint_blocked: boolfingerprint_blocked: booldisable_app_pin_if_device_pin_is_set: boolminimum_required_os_version: Stringminimum_warning_os_version: Stringminimum_required_app_version: Stringminimum_warning_app_version: String

Trait Implementations

impl Eq for ManagedAppProtection[src]

impl Clone for ManagedAppProtection[src]

impl PartialEq<ManagedAppProtection> for ManagedAppProtection[src]

impl Debug for ManagedAppProtection[src]

impl Serialize for ManagedAppProtection[src]

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