pub struct CollectClassNamesFromSubtree {
pub method: CollectClassNamesFromSubtreeMethod,
pub params: CollectClassNamesFromSubtreeParams,
}Expand description
Collects class names for the node with given id and all of it’s child nodes. collectClassNamesFromSubtree
Fields§
§method: CollectClassNamesFromSubtreeMethod§params: CollectClassNamesFromSubtreeParamsImplementations§
Source§impl CollectClassNamesFromSubtree
impl CollectClassNamesFromSubtree
pub fn builder() -> CollectClassNamesFromSubtreeBuilder
Source§impl CollectClassNamesFromSubtree
impl CollectClassNamesFromSubtree
pub const IDENTIFIER: &'static str = "DOM.collectClassNamesFromSubtree"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CollectClassNamesFromSubtree
impl Clone for CollectClassNamesFromSubtree
Source§fn clone(&self) -> CollectClassNamesFromSubtree
fn clone(&self) -> CollectClassNamesFromSubtree
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 CollectClassNamesFromSubtree
impl CommandResult for CollectClassNamesFromSubtree
type Result = CollectClassNamesFromSubtreeResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for CollectClassNamesFromSubtree
impl Debug for CollectClassNamesFromSubtree
Source§impl<'de> Deserialize<'de> for CollectClassNamesFromSubtree
impl<'de> Deserialize<'de> for CollectClassNamesFromSubtree
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<CollectClassNamesFromSubtree> for BrowserProtocolCommands
impl From<CollectClassNamesFromSubtree> for BrowserProtocolCommands
Source§fn from(v: CollectClassNamesFromSubtree) -> Self
fn from(v: CollectClassNamesFromSubtree) -> Self
Converts to this type from the input type.
Source§impl From<CollectClassNamesFromSubtree> for Command
impl From<CollectClassNamesFromSubtree> for Command
Source§fn from(v: CollectClassNamesFromSubtree) -> Self
fn from(v: CollectClassNamesFromSubtree) -> Self
Converts to this type from the input type.
Source§impl From<CollectClassNamesFromSubtree> for DomCommands
impl From<CollectClassNamesFromSubtree> for DomCommands
Source§fn from(v: CollectClassNamesFromSubtree) -> Self
fn from(v: CollectClassNamesFromSubtree) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CollectClassNamesFromSubtree
impl PartialEq for CollectClassNamesFromSubtree
Source§fn eq(&self, other: &CollectClassNamesFromSubtree) -> bool
fn eq(&self, other: &CollectClassNamesFromSubtree) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for CollectClassNamesFromSubtree
impl TryFrom<BrowserProtocolCommands> for CollectClassNamesFromSubtree
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, <CollectClassNamesFromSubtree as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <CollectClassNamesFromSubtree as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<DomCommands> for CollectClassNamesFromSubtree
impl TryFrom<DomCommands> for CollectClassNamesFromSubtree
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, <CollectClassNamesFromSubtree as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <CollectClassNamesFromSubtree as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for CollectClassNamesFromSubtree
Auto Trait Implementations§
impl Freeze for CollectClassNamesFromSubtree
impl RefUnwindSafe for CollectClassNamesFromSubtree
impl Send for CollectClassNamesFromSubtree
impl Sync for CollectClassNamesFromSubtree
impl Unpin for CollectClassNamesFromSubtree
impl UnsafeUnpin for CollectClassNamesFromSubtree
impl UnwindSafe for CollectClassNamesFromSubtree
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