pub struct RequestChildNodes {
pub method: RequestChildNodesMethod,
pub params: RequestChildNodesParams,
}Expand description
Requests that children of the node with given id are returned to the caller in form of
setChildNodes events where not only immediate children are retrieved, but all children down to
the specified depth.
requestChildNodes
Fields§
§method: RequestChildNodesMethod§params: RequestChildNodesParamsImplementations§
Source§impl RequestChildNodes
impl RequestChildNodes
pub fn builder() -> RequestChildNodesBuilder
Source§impl RequestChildNodes
impl RequestChildNodes
pub const IDENTIFIER: &'static str = "DOM.requestChildNodes"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RequestChildNodes
impl Clone for RequestChildNodes
Source§fn clone(&self) -> RequestChildNodes
fn clone(&self) -> RequestChildNodes
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 RequestChildNodes
impl CommandResult for RequestChildNodes
type Result = RequestChildNodesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RequestChildNodes
impl Debug for RequestChildNodes
Source§impl<'de> Deserialize<'de> for RequestChildNodes
impl<'de> Deserialize<'de> for RequestChildNodes
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<RequestChildNodes> for BrowserProtocolCommands
impl From<RequestChildNodes> for BrowserProtocolCommands
Source§fn from(v: RequestChildNodes) -> Self
fn from(v: RequestChildNodes) -> Self
Converts to this type from the input type.
Source§impl From<RequestChildNodes> for Command
impl From<RequestChildNodes> for Command
Source§fn from(v: RequestChildNodes) -> Self
fn from(v: RequestChildNodes) -> Self
Converts to this type from the input type.
Source§impl From<RequestChildNodes> for DomCommands
impl From<RequestChildNodes> for DomCommands
Source§fn from(v: RequestChildNodes) -> Self
fn from(v: RequestChildNodes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RequestChildNodes
impl PartialEq for RequestChildNodes
Source§impl Serialize for RequestChildNodes
impl Serialize for RequestChildNodes
Source§impl TryFrom<BrowserProtocolCommands> for RequestChildNodes
impl TryFrom<BrowserProtocolCommands> for RequestChildNodes
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, <RequestChildNodes as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <RequestChildNodes as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for RequestChildNodes
impl TryFrom<Command> for RequestChildNodes
Source§impl TryFrom<DomCommands> for RequestChildNodes
impl TryFrom<DomCommands> for RequestChildNodes
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, <RequestChildNodes as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <RequestChildNodes as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for RequestChildNodes
Auto Trait Implementations§
impl Freeze for RequestChildNodes
impl RefUnwindSafe for RequestChildNodes
impl Send for RequestChildNodes
impl Sync for RequestChildNodes
impl Unpin for RequestChildNodes
impl UnsafeUnpin for RequestChildNodes
impl UnwindSafe for RequestChildNodes
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