Enum webmanifest::DisplayMode[][src]

pub enum DisplayMode {
    FullScreen,
    Standalone,
    MinimalUi,
    Browser,
}

Defines the developers’ preferred display mode for the website.

Variants

All of the available display area is used and no user agent chrome is shown.

The application will look and feel like a standalone application. This can include the application having a different window, its own icon in the application launcher, etc. In this mode, the user agent will exclude UI elements for controlling navigation, but can include other UI elements such as a status bar.

The application will look and feel like a standalone application, but will have a minimal set of UI elements for controlling navigation. The elements will vary by browser.

The application opens in a conventional browser tab or new window, depending on the browser and platform. This is the default.

Trait Implementations

impl Debug for DisplayMode
[src]

Formats the value using the given formatter. Read more

impl Clone for DisplayMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for DisplayMode

impl Sync for DisplayMode