[][src]Struct google_androidmanagement1::KioskCustomization

pub struct KioskCustomization {
    pub status_bar: Option<String>,
    pub device_settings: Option<String>,
    pub system_navigation: Option<String>,
    pub power_button_actions: Option<String>,
    pub system_error_warnings: Option<String>,
}

Settings controlling the behavior of a device in kiosk mode. To enable kiosk mode, set kioskCustomLauncherEnabled to true or specify an app in the policy with installType KIOSK.

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

Fields

status_bar: Option<String>

Specifies whether system info and notifications are disabled in kiosk mode.

device_settings: Option<String>

Specifies whether the Settings app is allowed in kiosk mode.

system_navigation: Option<String>

Specifies which navigation features are enabled (e.g. Home, Overview buttons) in kiosk mode.

power_button_actions: Option<String>

Sets the behavior of a device in kiosk mode when a user presses and holds (long-presses) the Power button.

system_error_warnings: Option<String>

Specifies whether system error dialogs for crashed or unresponsive apps are blocked in kiosk mode. When blocked, the system will force-stop the app as if the user chooses the "close app" option on the UI.

Trait Implementations

impl Clone for KioskCustomization[src]

impl Debug for KioskCustomization[src]

impl Default for KioskCustomization[src]

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

impl Part for KioskCustomization[src]

impl Serialize for KioskCustomization[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