(key_path: &str)
| 424 | } |
| 425 | |
| 426 | fn get_parent_key_path(key_path: &str) -> &str { |
| 427 | match key_path.rfind('\\') { |
| 428 | Some(index) => &key_path[..index], |
| 429 | None => "", |
| 430 | } |
| 431 | } |
| 432 | |
| 433 | fn convert_reg_value(value: &Data) -> Result<Option<RegistryValueData>, RegistryError> { |
| 434 | match value { |
no outgoing calls
no test coverage detected