pub struct ChildNodeRemovedParams {
pub parent_node_id: NodeId,
pub node_id: Box<NodeId>,
}Expand description
Mirrors DOMNodeRemoved event.
childNodeRemoved
Fields§
§parent_node_id: NodeIdParent id.
node_id: Box<NodeId>Id of the node that has been removed.
Trait Implementations§
Source§impl Clone for ChildNodeRemovedParams
impl Clone for ChildNodeRemovedParams
Source§fn clone(&self) -> ChildNodeRemovedParams
fn clone(&self) -> ChildNodeRemovedParams
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 Debug for ChildNodeRemovedParams
impl Debug for ChildNodeRemovedParams
Source§impl<'de> Deserialize<'de> for ChildNodeRemovedParams
impl<'de> Deserialize<'de> for ChildNodeRemovedParams
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 PartialEq for ChildNodeRemovedParams
impl PartialEq for ChildNodeRemovedParams
Source§impl Serialize for ChildNodeRemovedParams
impl Serialize for ChildNodeRemovedParams
impl StructuralPartialEq for ChildNodeRemovedParams
Auto Trait Implementations§
impl Freeze for ChildNodeRemovedParams
impl RefUnwindSafe for ChildNodeRemovedParams
impl Send for ChildNodeRemovedParams
impl Sync for ChildNodeRemovedParams
impl Unpin for ChildNodeRemovedParams
impl UnsafeUnpin for ChildNodeRemovedParams
impl UnwindSafe for ChildNodeRemovedParams
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