Returns an absolute path as combination of base directory and relative path.
(&self)
| 66 | |
| 67 | /// Returns an absolute path as combination of base directory and relative path. |
| 68 | pub fn to_path_buf(&self) -> PathBuf { |
| 69 | self.base_dir.join(self.path) |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | /// A set of input paths. |
no test coverage detected