(&self, state: &mut H)
| 2461 | |
| 2462 | impl Hash for Function { |
| 2463 | fn hash<H: std::hash::Hasher>(&self, state: &mut H) { |
| 2464 | let start_address = self.start(); |
| 2465 | let architecture = self.arch(); |
| 2466 | let platform = self.platform(); |
| 2467 | (start_address, architecture, platform).hash(state) |
| 2468 | } |
| 2469 | } |
| 2470 | |
| 2471 | impl PartialEq for Function { |