[][src]Struct google_androidenterprise1::StoreLayout

pub struct StoreLayout {
    pub homepage_id: Option<String>,
    pub kind: Option<String>,
    pub store_layout_type: Option<String>,
}

General setting for the managed Google Play store layout, currently only specifying the page to display the first time the store is opened.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

homepage_id: Option<String>

The ID of the store page to be used as the homepage. The homepage is the first page shown in the managed Google Play Store.

Not specifying a homepage is equivalent to setting the store layout type to "basic".

kind: Option<String>

no description provided

store_layout_type: Option<String>

The store layout type. By default, this value is set to "basic" if the homepageId field is not set, and to "custom" otherwise. If set to "basic", the layout will consist of all approved apps that have been whitelisted for the user.

Trait Implementations

impl Clone for StoreLayout[src]

impl Debug for StoreLayout[src]

impl Default for StoreLayout[src]

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

impl RequestValue for StoreLayout[src]

impl ResponseResult for StoreLayout[src]

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