pub struct GetAppIdReturns {
pub appId: Option<String>,
pub recommendedId: Option<String>,
}Expand description
Returns the unique (PWA) app id. Only returns values if the feature flag ‘WebAppEnableManifestId’ is enabled
Fields§
§appId: Option<String>App id, either from manifest’s id attribute or computed from start_url
recommendedId: Option<String>Recommendation for manifest’s id attribute to match current id computed from start_url
Trait Implementations§
Source§impl Clone for GetAppIdReturns
impl Clone for GetAppIdReturns
Source§fn clone(&self) -> GetAppIdReturns
fn clone(&self) -> GetAppIdReturns
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetAppIdReturns
impl Debug for GetAppIdReturns
Source§impl Default for GetAppIdReturns
impl Default for GetAppIdReturns
Source§fn default() -> GetAppIdReturns
fn default() -> GetAppIdReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAppIdReturns
impl<'de> Deserialize<'de> for GetAppIdReturns
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetAppIdReturns
impl RefUnwindSafe for GetAppIdReturns
impl Send for GetAppIdReturns
impl Sync for GetAppIdReturns
impl Unpin for GetAppIdReturns
impl UnsafeUnpin for GetAppIdReturns
impl UnwindSafe for GetAppIdReturns
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
Mutably borrows from an owned value. Read more