pub struct ChildNodeInsertedEventParams {
pub parent_node_id: NodeId,
pub previous_node_id: NodeId,
pub node: Node,
}Fields§
§parent_node_id: NodeId§previous_node_id: NodeId§node: NodeTrait Implementations§
Source§impl Clone for ChildNodeInsertedEventParams
impl Clone for ChildNodeInsertedEventParams
Source§fn clone(&self) -> ChildNodeInsertedEventParams
fn clone(&self) -> ChildNodeInsertedEventParams
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 ChildNodeInsertedEventParams
impl Debug for ChildNodeInsertedEventParams
Source§impl<'de> Deserialize<'de> for ChildNodeInsertedEventParams
impl<'de> Deserialize<'de> for ChildNodeInsertedEventParams
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 ChildNodeInsertedEventParams
impl PartialEq for ChildNodeInsertedEventParams
Source§fn eq(&self, other: &ChildNodeInsertedEventParams) -> bool
fn eq(&self, other: &ChildNodeInsertedEventParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChildNodeInsertedEventParams
Auto Trait Implementations§
impl Freeze for ChildNodeInsertedEventParams
impl RefUnwindSafe for ChildNodeInsertedEventParams
impl Send for ChildNodeInsertedEventParams
impl Sync for ChildNodeInsertedEventParams
impl Unpin for ChildNodeInsertedEventParams
impl UnwindSafe for ChildNodeInsertedEventParams
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