[][src]Struct google_androidenterprise1::AppRestrictionsSchemaRestriction

pub struct AppRestrictionsSchemaRestriction {
    pub description: Option<String>,
    pub title: Option<String>,
    pub default_value: Option<AppRestrictionsSchemaRestrictionRestrictionValue>,
    pub nested_restriction: Option<Vec<AppRestrictionsSchemaRestriction>>,
    pub entry_value: Option<Vec<String>>,
    pub key: Option<String>,
    pub entry: Option<Vec<String>>,
    pub restriction_type: Option<String>,
}

A restriction in the App Restriction Schema represents a piece of configuration that may be pre-applied.

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

Fields

description: Option<String>

A longer description of the restriction, giving more detail of what it affects.

title: Option<String>

The name of the restriction.

default_value: Option<AppRestrictionsSchemaRestrictionRestrictionValue>

The default value of the restriction. bundle and bundleArray restrictions never have a default value.

nested_restriction: Option<Vec<AppRestrictionsSchemaRestriction>>

For bundle or bundleArray restrictions, the list of nested restrictions. A bundle restriction is always nested within a bundleArray restriction, and a bundleArray restriction is at most two levels deep.

entry_value: Option<Vec<String>>

For choice or multiselect restrictions, the list of possible entries' machine-readable values. These values should be used in the configuration, either as a single string value for a choice restriction or in a stringArray for a multiselect restriction.

key: Option<String>

The unique key that the product uses to identify the restriction, e.g. "com.google.android.gm.fieldname".

entry: Option<Vec<String>>

For choice or multiselect restrictions, the list of possible entries' human-readable names.

restriction_type: Option<String>

The type of the restriction.

Trait Implementations

impl Part for AppRestrictionsSchemaRestriction[src]

impl Default for AppRestrictionsSchemaRestriction[src]

impl Clone for AppRestrictionsSchemaRestriction[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for AppRestrictionsSchemaRestriction[src]

impl Serialize for AppRestrictionsSchemaRestriction[src]

impl<'de> Deserialize<'de> for AppRestrictionsSchemaRestriction[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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