Creates an [`ExistingAbsoluteDir`] from a [`Path`] reference. Delegates to [`ExistingAbsoluteDir::new`]. # Errors Returns an error if [`ExistingAbsoluteDir::new`] fails.
(value: &Path)
| 141 | /// |
| 142 | /// Returns an error if [`ExistingAbsoluteDir::new`] fails. |
| 143 | fn try_from(value: &Path) -> Result<Self, Self::Error> { |
| 144 | Self::new(value.to_path_buf()) |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | /// Appends relative files from an input directory to a [`TarballBuilder`]. |
nothing calls this directly
no test coverage detected