pub struct ChildNodeInsertedParams {
pub parent_node_id: NodeId,
pub previous_node_id: NodeId,
pub node: Box<Node>,
}Expand description
Mirrors DOMNodeInserted event.
childNodeInserted
Fields§
§parent_node_id: NodeIdId of the node that has changed.
previous_node_id: NodeIdId of the previous sibling.
node: Box<Node>Inserted node data.
Trait Implementations§
Source§impl Clone for ChildNodeInsertedParams
impl Clone for ChildNodeInsertedParams
Source§fn clone(&self) -> ChildNodeInsertedParams
fn clone(&self) -> ChildNodeInsertedParams
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 ChildNodeInsertedParams
impl Debug for ChildNodeInsertedParams
Source§impl<'de> Deserialize<'de> for ChildNodeInsertedParams
impl<'de> Deserialize<'de> for ChildNodeInsertedParams
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 ChildNodeInsertedParams
impl PartialEq for ChildNodeInsertedParams
Source§impl Serialize for ChildNodeInsertedParams
impl Serialize for ChildNodeInsertedParams
impl StructuralPartialEq for ChildNodeInsertedParams
Auto Trait Implementations§
impl Freeze for ChildNodeInsertedParams
impl RefUnwindSafe for ChildNodeInsertedParams
impl Send for ChildNodeInsertedParams
impl Sync for ChildNodeInsertedParams
impl Unpin for ChildNodeInsertedParams
impl UnsafeUnpin for ChildNodeInsertedParams
impl UnwindSafe for ChildNodeInsertedParams
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