Struct chromiumoxide::cdp::browser_protocol::css::SetRuleSelectorParams
source · pub struct SetRuleSelectorParams {
pub style_sheet_id: StyleSheetId,
pub range: SourceRange,
pub selector: String,
}Expand description
Modifies the rule selector. setRuleSelector
Fields§
§style_sheet_id: StyleSheetId§range: SourceRange§selector: StringImplementations§
source§impl SetRuleSelectorParams
impl SetRuleSelectorParams
pub fn new( style_sheet_id: impl Into<StyleSheetId>, range: impl Into<SourceRange>, selector: impl Into<String> ) -> SetRuleSelectorParams
source§impl SetRuleSelectorParams
impl SetRuleSelectorParams
pub fn builder() -> SetRuleSelectorParamsBuilder
source§impl SetRuleSelectorParams
impl SetRuleSelectorParams
pub const IDENTIFIER: &'static str = "CSS.setRuleSelector"
Trait Implementations§
source§impl Clone for SetRuleSelectorParams
impl Clone for SetRuleSelectorParams
source§fn clone(&self) -> SetRuleSelectorParams
fn clone(&self) -> SetRuleSelectorParams
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 SetRuleSelectorParams
impl Command for SetRuleSelectorParams
§type Response = SetRuleSelectorReturns
type Response = SetRuleSelectorReturns
The type of the response this request triggers on the chromium server
source§impl Debug for SetRuleSelectorParams
impl Debug for SetRuleSelectorParams
source§impl<'de> Deserialize<'de> for SetRuleSelectorParams
impl<'de> Deserialize<'de> for SetRuleSelectorParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<SetRuleSelectorParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<SetRuleSelectorParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for SetRuleSelectorParams
impl Method for SetRuleSelectorParams
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 SetRuleSelectorParams
impl MethodType for SetRuleSelectorParams
source§impl PartialEq<SetRuleSelectorParams> for SetRuleSelectorParams
impl PartialEq<SetRuleSelectorParams> for SetRuleSelectorParams
source§fn eq(&self, other: &SetRuleSelectorParams) -> bool
fn eq(&self, other: &SetRuleSelectorParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for SetRuleSelectorParams
impl Serialize for SetRuleSelectorParams
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