pub struct RemoveNodeBuilder { /* private fields */ }Expand description
Builder for RemoveNode.
Implementations§
Source§impl RemoveNodeBuilder
impl RemoveNodeBuilder
Sourcepub fn node_id<VALUE: Into<NodeId>>(&mut self, value: VALUE) -> &mut Self
pub fn node_id<VALUE: Into<NodeId>>(&mut self, value: VALUE) -> &mut Self
Id of the node to remove.
Sourcepub fn build(&self) -> Result<RemoveNode, RemoveNodeBuilderError>
pub fn build(&self) -> Result<RemoveNode, RemoveNodeBuilderError>
Trait Implementations§
Source§impl Clone for RemoveNodeBuilder
impl Clone for RemoveNodeBuilder
Source§fn clone(&self) -> RemoveNodeBuilder
fn clone(&self) -> RemoveNodeBuilder
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 RemoveNodeBuilder
impl RefUnwindSafe for RemoveNodeBuilder
impl Send for RemoveNodeBuilder
impl Sync for RemoveNodeBuilder
impl Unpin for RemoveNodeBuilder
impl UnsafeUnpin for RemoveNodeBuilder
impl UnwindSafe for RemoveNodeBuilder
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