(&self, function: &BNFunction)
| 347 | } |
| 348 | |
| 349 | pub fn try_function_guid(&self, function: &BNFunction) -> Option<FunctionGUID> { |
| 350 | let function_id = FunctionID::from(function); |
| 351 | self.cache |
| 352 | .get(&function_id) |
| 353 | .map(|function_guid| function_guid.value().to_owned()) |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | #[derive(Clone, Debug, Default)] |
no test coverage detected