pub struct ChildNodeInsertedEventParamsBuilder { /* private fields */ }Expand description
Builder for ChildNodeInsertedEventParams.
Implementations§
Source§impl ChildNodeInsertedEventParamsBuilder
impl ChildNodeInsertedEventParamsBuilder
Sourcepub fn parent_node_id(&mut self, value: NodeId) -> &mut Self
pub fn parent_node_id(&mut self, value: NodeId) -> &mut Self
Id of the node that has changed.
Sourcepub fn previous_node_id(&mut self, value: NodeId) -> &mut Self
pub fn previous_node_id(&mut self, value: NodeId) -> &mut Self
Id of the previous sibling.
Sourcepub fn build(
&self,
) -> Result<ChildNodeInsertedEventParams, ChildNodeInsertedEventParamsBuilderError>
pub fn build( &self, ) -> Result<ChildNodeInsertedEventParams, ChildNodeInsertedEventParamsBuilderError>
Trait Implementations§
Source§impl Clone for ChildNodeInsertedEventParamsBuilder
impl Clone for ChildNodeInsertedEventParamsBuilder
Source§fn clone(&self) -> ChildNodeInsertedEventParamsBuilder
fn clone(&self) -> ChildNodeInsertedEventParamsBuilder
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 moreAuto Trait Implementations§
impl Freeze for ChildNodeInsertedEventParamsBuilder
impl RefUnwindSafe for ChildNodeInsertedEventParamsBuilder
impl Send for ChildNodeInsertedEventParamsBuilder
impl Sync for ChildNodeInsertedEventParamsBuilder
impl Unpin for ChildNodeInsertedEventParamsBuilder
impl UnsafeUnpin for ChildNodeInsertedEventParamsBuilder
impl UnwindSafe for ChildNodeInsertedEventParamsBuilder
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