(&self, permission: Security)
| 334 | } |
| 335 | |
| 336 | fn open(&self, permission: Security) -> Result<(RegKey, &str), RegistryError> { |
| 337 | open_regkey(&self.config.key_path, permission) |
| 338 | } |
| 339 | |
| 340 | // Find the valid parent key that exists and the subkeys that don't exist |
| 341 | // the subkeys are returned in reverse order (the closest subkey is the last one in the vector) |
no test coverage detected