pub struct QuerySelectorAll {
pub method: QuerySelectorAllMethod,
pub params: QuerySelectorAllParams,
}Expand description
Executes querySelectorAll on a given node.
querySelectorAll
Fields§
§method: QuerySelectorAllMethod§params: QuerySelectorAllParamsImplementations§
Source§impl QuerySelectorAll
impl QuerySelectorAll
pub fn builder() -> QuerySelectorAllBuilder
Source§impl QuerySelectorAll
impl QuerySelectorAll
pub const IDENTIFIER: &'static str = "DOM.querySelectorAll"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for QuerySelectorAll
impl Clone for QuerySelectorAll
Source§fn clone(&self) -> QuerySelectorAll
fn clone(&self) -> QuerySelectorAll
Returns a duplicate 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 CommandResult for QuerySelectorAll
impl CommandResult for QuerySelectorAll
type Result = QuerySelectorAllResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for QuerySelectorAll
impl Debug for QuerySelectorAll
Source§impl<'de> Deserialize<'de> for QuerySelectorAll
impl<'de> Deserialize<'de> for QuerySelectorAll
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
Source§impl From<QuerySelectorAll> for BrowserProtocolCommands
impl From<QuerySelectorAll> for BrowserProtocolCommands
Source§fn from(v: QuerySelectorAll) -> Self
fn from(v: QuerySelectorAll) -> Self
Converts to this type from the input type.
Source§impl From<QuerySelectorAll> for Command
impl From<QuerySelectorAll> for Command
Source§fn from(v: QuerySelectorAll) -> Self
fn from(v: QuerySelectorAll) -> Self
Converts to this type from the input type.
Source§impl From<QuerySelectorAll> for DomCommands
impl From<QuerySelectorAll> for DomCommands
Source§fn from(v: QuerySelectorAll) -> Self
fn from(v: QuerySelectorAll) -> Self
Converts to this type from the input type.
Source§impl PartialEq for QuerySelectorAll
impl PartialEq for QuerySelectorAll
Source§impl Serialize for QuerySelectorAll
impl Serialize for QuerySelectorAll
Source§impl TryFrom<BrowserProtocolCommands> for QuerySelectorAll
impl TryFrom<BrowserProtocolCommands> for QuerySelectorAll
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <QuerySelectorAll as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <QuerySelectorAll as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for QuerySelectorAll
impl TryFrom<Command> for QuerySelectorAll
Source§impl TryFrom<DomCommands> for QuerySelectorAll
impl TryFrom<DomCommands> for QuerySelectorAll
Source§type Error = DomCommands
type Error = DomCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomCommands,
) -> Result<Self, <QuerySelectorAll as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <QuerySelectorAll as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for QuerySelectorAll
Auto Trait Implementations§
impl Freeze for QuerySelectorAll
impl RefUnwindSafe for QuerySelectorAll
impl Send for QuerySelectorAll
impl Sync for QuerySelectorAll
impl Unpin for QuerySelectorAll
impl UnsafeUnpin for QuerySelectorAll
impl UnwindSafe for QuerySelectorAll
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