(&self, id: NodeId)
| 362 | type Adj = std::vec::IntoIter<Result<crate::types::SerializedGraphEdge, PristineError>>; |
| 363 | |
| 364 | fn get_external(&self, id: NodeId) -> Result<Option<Hash>, PristineError> { |
| 365 | Ok(self.externals.get(&id).copied()) |
| 366 | } |
| 367 | |
| 368 | fn get_internal(&self, _hash: &Hash) -> Result<Option<NodeId>, PristineError> { |
| 369 | Ok(None) |