pub struct GetAppManifestParams<'a> { /* private fields */ }Expand description
Gets the processed manifest for this current document. This API always waits for the manifest to be loaded. If manifestId is provided, and it does not match the manifest of the current document, this API errors out. If there is not a loaded page, this API errors out immediately.
Implementations§
Source§impl<'a> GetAppManifestParams<'a>
impl<'a> GetAppManifestParams<'a>
Sourcepub fn builder() -> GetAppManifestParamsBuilder<'a>
pub fn builder() -> GetAppManifestParamsBuilder<'a>
Creates a builder for this type.
pub fn manifest_id(&self) -> Option<&str>
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for GetAppManifestParams<'a>
impl<'a> CdpCommand<'a> for GetAppManifestParams<'a>
Source§impl<'a> Clone for GetAppManifestParams<'a>
impl<'a> Clone for GetAppManifestParams<'a>
Source§fn clone(&self) -> GetAppManifestParams<'a>
fn clone(&self) -> GetAppManifestParams<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for GetAppManifestParams<'a>
impl<'a> Debug for GetAppManifestParams<'a>
Source§impl<'a> Default for GetAppManifestParams<'a>
impl<'a> Default for GetAppManifestParams<'a>
Source§fn default() -> GetAppManifestParams<'a>
fn default() -> GetAppManifestParams<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for GetAppManifestParams<'a>
impl<'de, 'a> Deserialize<'de> for GetAppManifestParams<'a>
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<'a> Freeze for GetAppManifestParams<'a>
impl<'a> RefUnwindSafe for GetAppManifestParams<'a>
impl<'a> Send for GetAppManifestParams<'a>
impl<'a> Sync for GetAppManifestParams<'a>
impl<'a> Unpin for GetAppManifestParams<'a>
impl<'a> UnsafeUnpin for GetAppManifestParams<'a>
impl<'a> UnwindSafe for GetAppManifestParams<'a>
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