pub struct WebApp {
pub display_mode: Option<String>,
pub icons: Option<Vec<WebAppIcon>>,
pub name: Option<String>,
pub start_url: Option<String>,
pub title: Option<String>,
pub version_code: Option<i64>,
}
Expand description
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).
- web apps create enterprises (request|response)
- web apps get enterprises (response)
- web apps patch enterprises (request|response)
Fields§
§display_mode: Option<String>
The display mode of the web app.
icons: Option<Vec<WebAppIcon>>
A list of icons for the web app. Must have at least one element.
name: Option<String>
The name of the web app, which is generated by the server during creation in the form enterprises/{enterpriseId}/webApps/{packageName}.
start_url: Option<String>
The start URL, i.e. the URL that should load when the user opens the application.
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).
version_code: Option<i64>
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.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WebApp
impl<'de> Deserialize<'de> for WebApp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for WebApp
impl ResponseResult for WebApp
Auto Trait Implementations§
impl Freeze for WebApp
impl RefUnwindSafe for WebApp
impl Send for WebApp
impl Sync for WebApp
impl Unpin for WebApp
impl UnwindSafe for WebApp
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more