[][src]Struct google_androidmanagement1::WebApp

pub struct WebApp {
    pub name: Option<String>,
    pub icons: Option<Vec<WebAppIcon>>,
    pub version_code: Option<String>,
    pub title: Option<String>,
    pub display_mode: Option<String>,
    pub start_url: Option<String>,
}

A web app.

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

name: Option<String>

The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}.

icons: Option<Vec<WebAppIcon>>

A list of icons for the web app. Must have at least one element.

version_code: Option<String>

The current version of the app.Note that the version can automatically increase during the lifetime of the web app, while Google does internal housekeeping to keep the web app up-to-date.

title: Option<String>

The title of the web app as displayed to the user (e.g., amongst a list of other applications, or as a label for an icon).

display_mode: Option<String>

The display mode of the web app.

start_url: Option<String>

The start URL, i.e. the URL that should load when the user opens the application.

Trait Implementations

impl Clone for WebApp[src]

impl Debug for WebApp[src]

impl Default for WebApp[src]

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

impl RequestValue for WebApp[src]

impl ResponseResult for WebApp[src]

impl Serialize for WebApp[src]

Auto Trait Implementations

impl RefUnwindSafe for WebApp

impl Send for WebApp

impl Sync for WebApp

impl Unpin for WebApp

impl UnwindSafe for WebApp

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