Struct chromiumoxide::cdp::browser_protocol::dom::QuerySelectorAllParams
source · pub struct QuerySelectorAllParams {
pub node_id: NodeId,
pub selector: String,
}Expand description
Executes querySelectorAll on a given node.
querySelectorAll
Fields§
§node_id: NodeIdId of the node to query upon.
selector: StringSelector string.
Implementations§
source§impl QuerySelectorAllParams
impl QuerySelectorAllParams
pub fn builder() -> QuerySelectorAllParamsBuilder
source§impl QuerySelectorAllParams
impl QuerySelectorAllParams
pub const IDENTIFIER: &'static str = "DOM.querySelectorAll"
Trait Implementations§
source§impl Clone for QuerySelectorAllParams
impl Clone for QuerySelectorAllParams
source§fn clone(&self) -> QuerySelectorAllParams
fn clone(&self) -> QuerySelectorAllParams
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 QuerySelectorAllParams
impl Command for QuerySelectorAllParams
§type Response = QuerySelectorAllReturns
type Response = QuerySelectorAllReturns
The type of the response this request triggers on the chromium server
source§impl Debug for QuerySelectorAllParams
impl Debug for QuerySelectorAllParams
source§impl<'de> Deserialize<'de> for QuerySelectorAllParams
impl<'de> Deserialize<'de> for QuerySelectorAllParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<QuerySelectorAllParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<QuerySelectorAllParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for QuerySelectorAllParams
impl Method for QuerySelectorAllParams
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 QuerySelectorAllParams
impl MethodType for QuerySelectorAllParams
source§impl PartialEq<QuerySelectorAllParams> for QuerySelectorAllParams
impl PartialEq<QuerySelectorAllParams> for QuerySelectorAllParams
source§fn eq(&self, other: &QuerySelectorAllParams) -> bool
fn eq(&self, other: &QuerySelectorAllParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for QuerySelectorAllParams
impl Serialize for QuerySelectorAllParams
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