Returns an [`InputPaths`] for the input directory and all relative paths contained in it.
(&self)
| 594 | |
| 595 | /// Returns an [`InputPaths`] for the input directory and all relative paths contained in it. |
| 596 | pub fn input_paths(&self) -> Result<InputPaths<'_, '_>, crate::Error> { |
| 597 | Ok(InputPaths::new( |
| 598 | self.input_dir.as_path(), |
| 599 | &self.relative_paths, |
| 600 | )?) |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | impl TryFrom<InputDir> for PackageInput { |