pub struct GetNodesForSubtreeByStyle {
pub method: GetNodesForSubtreeByStyleMethod,
pub params: GetNodesForSubtreeByStyleParams,
}Expand description
Finds nodes with a given computed style in a subtree. getNodesForSubtreeByStyle
Fields§
§method: GetNodesForSubtreeByStyleMethod§params: GetNodesForSubtreeByStyleParamsImplementations§
Source§impl GetNodesForSubtreeByStyle
impl GetNodesForSubtreeByStyle
pub const IDENTIFIER: &'static str = "DOM.getNodesForSubtreeByStyle"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetNodesForSubtreeByStyle
impl Clone for GetNodesForSubtreeByStyle
Source§fn clone(&self) -> GetNodesForSubtreeByStyle
fn clone(&self) -> GetNodesForSubtreeByStyle
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 GetNodesForSubtreeByStyle
impl CommandResult for GetNodesForSubtreeByStyle
type Result = GetNodesForSubtreeByStyleResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetNodesForSubtreeByStyle
impl Debug for GetNodesForSubtreeByStyle
Source§impl<'de> Deserialize<'de> for GetNodesForSubtreeByStyle
impl<'de> Deserialize<'de> for GetNodesForSubtreeByStyle
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<GetNodesForSubtreeByStyle> for BrowserProtocolCommands
impl From<GetNodesForSubtreeByStyle> for BrowserProtocolCommands
Source§fn from(v: GetNodesForSubtreeByStyle) -> Self
fn from(v: GetNodesForSubtreeByStyle) -> Self
Converts to this type from the input type.
Source§impl From<GetNodesForSubtreeByStyle> for Command
impl From<GetNodesForSubtreeByStyle> for Command
Source§fn from(v: GetNodesForSubtreeByStyle) -> Self
fn from(v: GetNodesForSubtreeByStyle) -> Self
Converts to this type from the input type.
Source§impl From<GetNodesForSubtreeByStyle> for DomCommands
impl From<GetNodesForSubtreeByStyle> for DomCommands
Source§fn from(v: GetNodesForSubtreeByStyle) -> Self
fn from(v: GetNodesForSubtreeByStyle) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolCommands> for GetNodesForSubtreeByStyle
impl TryFrom<BrowserProtocolCommands> for GetNodesForSubtreeByStyle
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, <GetNodesForSubtreeByStyle as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetNodesForSubtreeByStyle as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetNodesForSubtreeByStyle
impl TryFrom<Command> for GetNodesForSubtreeByStyle
Source§impl TryFrom<DomCommands> for GetNodesForSubtreeByStyle
impl TryFrom<DomCommands> for GetNodesForSubtreeByStyle
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, <GetNodesForSubtreeByStyle as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <GetNodesForSubtreeByStyle as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetNodesForSubtreeByStyle
Auto Trait Implementations§
impl Freeze for GetNodesForSubtreeByStyle
impl RefUnwindSafe for GetNodesForSubtreeByStyle
impl Send for GetNodesForSubtreeByStyle
impl Sync for GetNodesForSubtreeByStyle
impl Unpin for GetNodesForSubtreeByStyle
impl UnsafeUnpin for GetNodesForSubtreeByStyle
impl UnwindSafe for GetNodesForSubtreeByStyle
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