pub struct GetAppId {
pub method: GetAppIdMethod,
pub params: GetAppIdParams,
}Expand description
Returns the unique (PWA) app id. Only returns values if the feature flag ‘WebAppEnableManifestId’ is enabled getAppId
Fields§
§method: GetAppIdMethod§params: GetAppIdParamsImplementations§
Source§impl GetAppId
impl GetAppId
pub const IDENTIFIER: &'static str = "Page.getAppId"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl CommandResult for GetAppId
impl CommandResult for GetAppId
type Result = GetAppIdResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for GetAppId
impl<'de> Deserialize<'de> for GetAppId
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
Source§impl From<GetAppId> for BrowserProtocolCommands
impl From<GetAppId> for BrowserProtocolCommands
Source§impl From<GetAppId> for PageCommands
impl From<GetAppId> for PageCommands
Source§impl TryFrom<BrowserProtocolCommands> for GetAppId
impl TryFrom<BrowserProtocolCommands> for GetAppId
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetAppId as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetAppId as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<PageCommands> for GetAppId
impl TryFrom<PageCommands> for GetAppId
Source§type Error = PageCommands
type Error = PageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageCommands,
) -> Result<Self, <GetAppId as TryFrom<PageCommands>>::Error>
fn try_from( e: PageCommands, ) -> Result<Self, <GetAppId as TryFrom<PageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetAppId
Auto Trait Implementations§
impl Freeze for GetAppId
impl RefUnwindSafe for GetAppId
impl Send for GetAppId
impl Sync for GetAppId
impl Unpin for GetAppId
impl UnsafeUnpin for GetAppId
impl UnwindSafe for GetAppId
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