pub struct DescribeNode {
pub method: DescribeNodeMethod,
pub params: DescribeNodeParams,
}Expand description
Describes node given its id, does not require domain to be enabled. Does not start tracking any objects, can be used for automation. describeNode
Fields§
§method: DescribeNodeMethod§params: DescribeNodeParamsImplementations§
Source§impl DescribeNode
impl DescribeNode
pub fn builder() -> DescribeNodeBuilder
Source§impl DescribeNode
impl DescribeNode
pub const IDENTIFIER: &'static str = "DOM.describeNode"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DescribeNode
impl Clone for DescribeNode
Source§fn clone(&self) -> DescribeNode
fn clone(&self) -> DescribeNode
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 DescribeNode
impl CommandResult for DescribeNode
type Result = DescribeNodeResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for DescribeNode
impl Debug for DescribeNode
Source§impl<'de> Deserialize<'de> for DescribeNode
impl<'de> Deserialize<'de> for DescribeNode
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<DescribeNode> for BrowserProtocolCommands
impl From<DescribeNode> for BrowserProtocolCommands
Source§fn from(v: DescribeNode) -> Self
fn from(v: DescribeNode) -> Self
Converts to this type from the input type.
Source§impl From<DescribeNode> for Command
impl From<DescribeNode> for Command
Source§fn from(v: DescribeNode) -> Self
fn from(v: DescribeNode) -> Self
Converts to this type from the input type.
Source§impl From<DescribeNode> for DomCommands
impl From<DescribeNode> for DomCommands
Source§fn from(v: DescribeNode) -> Self
fn from(v: DescribeNode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DescribeNode
impl PartialEq for DescribeNode
Source§impl Serialize for DescribeNode
impl Serialize for DescribeNode
Source§impl TryFrom<BrowserProtocolCommands> for DescribeNode
impl TryFrom<BrowserProtocolCommands> for DescribeNode
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, <DescribeNode as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <DescribeNode as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for DescribeNode
impl TryFrom<Command> for DescribeNode
Source§impl TryFrom<DomCommands> for DescribeNode
impl TryFrom<DomCommands> for DescribeNode
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, <DescribeNode as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <DescribeNode as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for DescribeNode
Auto Trait Implementations§
impl Freeze for DescribeNode
impl RefUnwindSafe for DescribeNode
impl Send for DescribeNode
impl Sync for DescribeNode
impl Unpin for DescribeNode
impl UnsafeUnpin for DescribeNode
impl UnwindSafe for DescribeNode
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