pub struct SetEmulatedMediaParams {
pub media: Option<String>,
pub features: Option<Vec<MediaFeature, Global>>,
}Expand description
Emulates the given media type or media feature for CSS media queries. setEmulatedMedia
Fields§
§media: Option<String>Media type to emulate. Empty string disables the override.
features: Option<Vec<MediaFeature, Global>>Media features to emulate.
Implementations§
source§impl SetEmulatedMediaParams
impl SetEmulatedMediaParams
pub fn builder() -> SetEmulatedMediaParamsBuilder
source§impl SetEmulatedMediaParams
impl SetEmulatedMediaParams
pub const IDENTIFIER: &'static str = "Emulation.setEmulatedMedia"
Trait Implementations§
source§impl Clone for SetEmulatedMediaParams
impl Clone for SetEmulatedMediaParams
source§fn clone(&self) -> SetEmulatedMediaParams
fn clone(&self) -> SetEmulatedMediaParams
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 SetEmulatedMediaParams
impl Command for SetEmulatedMediaParams
§type Response = SetEmulatedMediaReturns
type Response = SetEmulatedMediaReturns
The type of the response this request triggers on the chromium server
source§impl Debug for SetEmulatedMediaParams
impl Debug for SetEmulatedMediaParams
source§impl Default for SetEmulatedMediaParams
impl Default for SetEmulatedMediaParams
source§fn default() -> SetEmulatedMediaParams
fn default() -> SetEmulatedMediaParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SetEmulatedMediaParams
impl<'de> Deserialize<'de> for SetEmulatedMediaParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<SetEmulatedMediaParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<SetEmulatedMediaParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for SetEmulatedMediaParams
impl Method for SetEmulatedMediaParams
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 MethodType for SetEmulatedMediaParams
impl MethodType for SetEmulatedMediaParams
source§impl PartialEq<SetEmulatedMediaParams> for SetEmulatedMediaParams
impl PartialEq<SetEmulatedMediaParams> for SetEmulatedMediaParams
source§fn eq(&self, other: &SetEmulatedMediaParams) -> bool
fn eq(&self, other: &SetEmulatedMediaParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for SetEmulatedMediaParams
impl Serialize for SetEmulatedMediaParams
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