Struct chromiumoxide::cdp::browser_protocol::page::AddCompilationCacheParams
source · pub struct AddCompilationCacheParams {
pub url: String,
pub data: Binary,
}Expand description
Seeds compilation cache for given url. Compilation cache does not survive cross-process navigation. addCompilationCache
Fields§
§url: String§data: BinaryBase64-encoded data
Implementations§
source§impl AddCompilationCacheParams
impl AddCompilationCacheParams
pub const IDENTIFIER: &'static str = "Page.addCompilationCache"
Trait Implementations§
source§impl Clone for AddCompilationCacheParams
impl Clone for AddCompilationCacheParams
source§fn clone(&self) -> AddCompilationCacheParams
fn clone(&self) -> AddCompilationCacheParams
Returns a copy 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 Command for AddCompilationCacheParams
impl Command for AddCompilationCacheParams
§type Response = AddCompilationCacheReturns
type Response = AddCompilationCacheReturns
The type of the response this request triggers on the chromium server
source§impl Debug for AddCompilationCacheParams
impl Debug for AddCompilationCacheParams
source§impl<'de> Deserialize<'de> for AddCompilationCacheParams
impl<'de> Deserialize<'de> for AddCompilationCacheParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<AddCompilationCacheParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<AddCompilationCacheParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for AddCompilationCacheParams
impl Method for AddCompilationCacheParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesource§impl PartialEq<AddCompilationCacheParams> for AddCompilationCacheParams
impl PartialEq<AddCompilationCacheParams> for AddCompilationCacheParams
source§fn eq(&self, other: &AddCompilationCacheParams) -> bool
fn eq(&self, other: &AddCompilationCacheParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for AddCompilationCacheParams
impl Serialize for AddCompilationCacheParams
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more