(value: PathBuf)
| 35 | |
| 36 | impl From<PathBuf> for CacheDir { |
| 37 | fn from(value: PathBuf) -> Self { |
| 38 | debug!("Using path {value:?} as cache dir."); |
| 39 | |
| 40 | Self(value) |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | impl AsRef<Path> for CacheDir { |
nothing calls this directly
no outgoing calls
no test coverage detected