pub struct RemoveNode {
pub method: RemoveNodeMethod,
pub params: RemoveNodeParams,
}Expand description
Removes node with given id. removeNode
Fields§
§method: RemoveNodeMethod§params: RemoveNodeParamsImplementations§
Source§impl RemoveNode
impl RemoveNode
pub fn builder() -> RemoveNodeBuilder
Source§impl RemoveNode
impl RemoveNode
pub const IDENTIFIER: &'static str = "DOM.removeNode"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RemoveNode
impl Clone for RemoveNode
Source§fn clone(&self) -> RemoveNode
fn clone(&self) -> RemoveNode
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 RemoveNode
impl CommandResult for RemoveNode
type Result = RemoveNodeResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RemoveNode
impl Debug for RemoveNode
Source§impl<'de> Deserialize<'de> for RemoveNode
impl<'de> Deserialize<'de> for RemoveNode
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<RemoveNode> for BrowserProtocolCommands
impl From<RemoveNode> for BrowserProtocolCommands
Source§fn from(v: RemoveNode) -> Self
fn from(v: RemoveNode) -> Self
Converts to this type from the input type.
Source§impl From<RemoveNode> for Command
impl From<RemoveNode> for Command
Source§fn from(v: RemoveNode) -> Self
fn from(v: RemoveNode) -> Self
Converts to this type from the input type.
Source§impl From<RemoveNode> for DomCommands
impl From<RemoveNode> for DomCommands
Source§fn from(v: RemoveNode) -> Self
fn from(v: RemoveNode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RemoveNode
impl PartialEq for RemoveNode
Source§impl Serialize for RemoveNode
impl Serialize for RemoveNode
Source§impl TryFrom<BrowserProtocolCommands> for RemoveNode
impl TryFrom<BrowserProtocolCommands> for RemoveNode
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, <RemoveNode as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <RemoveNode as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for RemoveNode
impl TryFrom<Command> for RemoveNode
Source§impl TryFrom<DomCommands> for RemoveNode
impl TryFrom<DomCommands> for RemoveNode
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, <RemoveNode as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <RemoveNode as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for RemoveNode
Auto Trait Implementations§
impl Freeze for RemoveNode
impl RefUnwindSafe for RemoveNode
impl Send for RemoveNode
impl Sync for RemoveNode
impl Unpin for RemoveNode
impl UnsafeUnpin for RemoveNode
impl UnwindSafe for RemoveNode
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