(&self)
| 199 | } |
| 200 | |
| 201 | pub fn get_library_func_gadget_path(&self) -> Result<PathBuf> { |
| 202 | let gadget_path: PathBuf = [self.get_library_misc_dir()?, "func_gadgets.txt".into()] |
| 203 | .iter() |
| 204 | .collect(); |
| 205 | Ok(gadget_path) |
| 206 | } |
| 207 | |
| 208 | pub fn get_library_branch_dump_path(&self) -> Result<PathBuf> { |
| 209 | let save_path: PathBuf = [self.get_library_misc_dir()?, "branches.json".into()] |
no test coverage detected