Returns a new [Node] value with a copy of the pointer to a node.
(&self)
| 384 | impl Clone for Node { |
| 385 | /// Returns a new [Node] value with a copy of the pointer to a node. |
| 386 | fn clone(&self) -> Self { |
| 387 | Node { |
| 388 | body: self.body.clone(), |
| 389 | } |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | impl PartialEq for Node { |
no outgoing calls