(root: &Path)
| 4271 | } |
| 4272 | |
| 4273 | fn image_cache_root_dir(root: &Path) -> PathBuf { |
| 4274 | root.join(IMAGE_CACHE_ROOT_DIR) |
| 4275 | } |
| 4276 | |
| 4277 | fn image_cache_dir(root: &Path, image_identity: &str) -> PathBuf { |
| 4278 | image_cache_root_dir(root).join(sanitize_image_identity(image_identity)) |
no outgoing calls
no test coverage detected