pub struct NodeToDelete {
pub node_id: NodeId,
pub delete_reverse_references: bool,
}Expand description
Node that should be deleted.
Fields§
§node_id: NodeIdNode ID of node being deleted.
delete_reverse_references: boolWhether to delete references to this node. References from this node should always be deleted.
Trait Implementations§
Source§impl Debug for NodeToDelete
impl Debug for NodeToDelete
Auto Trait Implementations§
impl Freeze for NodeToDelete
impl RefUnwindSafe for NodeToDelete
impl Send for NodeToDelete
impl Sync for NodeToDelete
impl Unpin for NodeToDelete
impl UnwindSafe for NodeToDelete
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