upgrade function panics if the the Node pointer it downgraded from went out of scope
(&self)
| 1350 | impl WeakNode { |
| 1351 | //upgrade function panics if the the Node pointer it downgraded from went out of scope |
| 1352 | fn upgrade(&self) -> Node { |
| 1353 | Node { |
| 1354 | body: self.body.upgrade().unwrap(), |
| 1355 | } |
| 1356 | } |
| 1357 | } |
| 1358 | |
| 1359 | impl Clone for WeakNode { |
no outgoing calls
no test coverage detected