[][src]Struct google_androidmanagement1::PersonalUsagePolicies

pub struct PersonalUsagePolicies {
    pub personal_play_store_mode: Option<String>,
    pub personal_applications: Option<Vec<PersonalApplicationPolicy>>,
    pub account_types_with_management_disabled: Option<Vec<String>>,
    pub max_days_with_work_off: Option<i32>,
    pub camera_disabled: Option<bool>,
    pub screen_capture_disabled: Option<bool>,
}

Policies controlling personal usage on a Corporate Owned Personally Enabled device.

This type is not used in any activity, and only used as part of another schema.

Fields

personal_play_store_mode: Option<String>

Controls how apps on the personal profile are allowed or blocked.

personal_applications: Option<Vec<PersonalApplicationPolicy>>

Policy applied to applications on the personal profile.

account_types_with_management_disabled: Option<Vec<String>>

Account types that can't be managed by the user.

max_days_with_work_off: Option<i32>

Controls how long the work profile can stay off.

camera_disabled: Option<bool>

Whether camera is disabled.

screen_capture_disabled: Option<bool>

Whether screen capture is disabled.

Trait Implementations

impl Clone for PersonalUsagePolicies[src]

impl Debug for PersonalUsagePolicies[src]

impl Default for PersonalUsagePolicies[src]

impl<'de> Deserialize<'de> for PersonalUsagePolicies[src]

impl Part for PersonalUsagePolicies[src]

impl Serialize for PersonalUsagePolicies[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any