pub struct GetDetachedDomNodes {
pub method: GetDetachedDomNodesMethod,
pub params: GetDetachedDomNodesParams,
}Expand description
Returns list of detached nodes getDetachedDomNodes
Fields§
§method: GetDetachedDomNodesMethod§params: GetDetachedDomNodesParamsImplementations§
Source§impl GetDetachedDomNodes
impl GetDetachedDomNodes
pub fn builder() -> GetDetachedDomNodesBuilder
Source§impl GetDetachedDomNodes
impl GetDetachedDomNodes
pub const IDENTIFIER: &'static str = "DOM.getDetachedDomNodes"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetDetachedDomNodes
impl Clone for GetDetachedDomNodes
Source§fn clone(&self) -> GetDetachedDomNodes
fn clone(&self) -> GetDetachedDomNodes
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 GetDetachedDomNodes
impl CommandResult for GetDetachedDomNodes
type Result = GetDetachedDomNodesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetDetachedDomNodes
impl Debug for GetDetachedDomNodes
Source§impl<'de> Deserialize<'de> for GetDetachedDomNodes
impl<'de> Deserialize<'de> for GetDetachedDomNodes
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<GetDetachedDomNodes> for BrowserProtocolCommands
impl From<GetDetachedDomNodes> for BrowserProtocolCommands
Source§fn from(v: GetDetachedDomNodes) -> Self
fn from(v: GetDetachedDomNodes) -> Self
Converts to this type from the input type.
Source§impl From<GetDetachedDomNodes> for Command
impl From<GetDetachedDomNodes> for Command
Source§fn from(v: GetDetachedDomNodes) -> Self
fn from(v: GetDetachedDomNodes) -> Self
Converts to this type from the input type.
Source§impl From<GetDetachedDomNodes> for DomCommands
impl From<GetDetachedDomNodes> for DomCommands
Source§fn from(v: GetDetachedDomNodes) -> Self
fn from(v: GetDetachedDomNodes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetDetachedDomNodes
impl PartialEq for GetDetachedDomNodes
Source§impl Serialize for GetDetachedDomNodes
impl Serialize for GetDetachedDomNodes
Source§impl TryFrom<BrowserProtocolCommands> for GetDetachedDomNodes
impl TryFrom<BrowserProtocolCommands> for GetDetachedDomNodes
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, <GetDetachedDomNodes as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetDetachedDomNodes as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetDetachedDomNodes
impl TryFrom<Command> for GetDetachedDomNodes
Source§impl TryFrom<DomCommands> for GetDetachedDomNodes
impl TryFrom<DomCommands> for GetDetachedDomNodes
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, <GetDetachedDomNodes as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <GetDetachedDomNodes as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetDetachedDomNodes
Auto Trait Implementations§
impl Freeze for GetDetachedDomNodes
impl RefUnwindSafe for GetDetachedDomNodes
impl Send for GetDetachedDomNodes
impl Sync for GetDetachedDomNodes
impl Unpin for GetDetachedDomNodes
impl UnsafeUnpin for GetDetachedDomNodes
impl UnwindSafe for GetDetachedDomNodes
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