Look up a ghost stub by node ID.
(&self, node_id: &str)
| 110 | |
| 111 | /// Look up a ghost stub by node ID. |
| 112 | pub fn get(&self, node_id: &str) -> Option<&GhostStub> { |
| 113 | self.stubs.get(node_id) |
| 114 | } |
| 115 | |
| 116 | /// Decrement refcount for a ghost (when a local edge is deleted). |
| 117 | /// Returns true if the ghost was purged (refcount reached zero). |
no outgoing calls